Documentation

removeSpan

removes a rowspan/colspan from the datatable

void removeSpan(string| number id,string column);

Parameters

idstring| numberrow id that starts a colspan/rowspan
columnstringcolumn id that starts a colspan/rowspan

See also

Available only in PRO Edition

Example

grid.removeSpan(1, "country");
grid.refresh();

Back to top