removeCss
removes CSS class from a component item
function removeCss( // ID of the necessary item id: string|number, // CSS class name css: string, // if true, the component is not redrawn silent?: boolean): void
Example
Section titled “Example”//this points to a component object//this.my_marked is an id of a previously marked data itemthis.removeCss(this.my_marked, "my_custom_mark");
also check the next samples:
Details
Section titled “Details”The method is true for removing CSS only from those items which CSS was previously added by addCSS().