hideColumn method

bool hideColumn(
  1. String columnId
)

Hides the column identified by columnId.

Returns whether the visibility change was accepted.

Implementation

bool hideColumn(String columnId) {
  return _requireAttached(_setColumnVisible).call(columnId, false);
}