Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Current »

Content Freeze

As of July 25th, 2023, there is a content freeze on this page.

API Overview

The grid.showColumn() grid method shows a hidden column at runtime.

This method is available in Profound UI Version 6 and later.

Contents

Important!

In order to use this grid method, the Hide Column Option needs to be set to true in the designer.

Parameters

  • columnIndex
    - index to identify the column, where 0 is the first* column, 1 is the second column, etc.
    *Column 0 refers to the first column as established during design-time (in Visual Designer). If movable columns is true, then the user could change the column order. For example, showColumn(0) shows what was originally the first column even if the user has moved that column.

Return Value

true or false, if successful or not



Examples

Title of Example Code
// show the first column
getObj("Grid1").grid.showColumn(0);
  • No labels