Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Note
titleContent Freeze

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

This method brings up a find box above a grid column allowing the user to find data in that column.

...

  • 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. removeColumn(0) removes what was originally the first column, even if the user has moved that column.

...

Code Block
languagejavascript
getObj("Grid1").grid.startFilter(0); 

...