showColumn method

bool showColumn(
  1. String columnId
)

Makes the column identified by columnId visible.

Returns whether the visibility change was accepted.

Implementation

bool showColumn(String columnId) {
  return _requireAttached(_setColumnVisible).call(columnId, true);
}