Documentation

removeCellCss

remove css class from the cell of datatable

void removeCellCss(string id,string name,string css_name);

Parameters

idstringrow id
namestringcolumn name
css_namestringname of css class to remove

See also

Example

$$("mytable").removeCellCss(152, "year", "some_style");

Back to top