freezeRow
fixes a row at the top of the datagrid at runtime
function freezeRow( // optional, the row id id: number|string, // optional, true - to move a row to the "frozen" block, false - to unfreeze a row state: boolean): void
Example
Section titled “Example”grid.freezeRow(id, true);
Details
Section titled “Details”Note that if you don’t pass any parameters to the method, all frozen rows will be unfrozen. The method is inapplicable if called for DataGrid in paging mode
See also
Section titled “See also”Articles