hides/shows a row
id | string|number | the id of a row |
state | boolean | true/false to hide/show a row |
// hide row with the id "row1"
mygrid.setRowHidden("row1",true);
// show row with the id "row1"
mygrid.setRowHidden("row1",false);
Warning! This command doesn't affect row indexes, only visual appearance.
Back to top