SMART datagrid v.1 > Classes > GridView
DataLudi.GridView.unhideAllRows method
Unhide all data rows which is currently hidden.
function unhideAllRows (): Boolean;
- Returns
- Boolean
- Note
- The hidden state of grid row is different from not displaying descendant rows due to closing group row. If specify as hidden state, it will not create the rows in grid row model level.
Code -1
$('#showAll').click(function () {
grid.unhideAllRows();
});
- See Also
- isHidden
- setHidden
- setHiddenRows
- getHiddenRows
- hiddenRowCount
- Examples
- Hidden Rows