removeStyle

removes a CSS rule from the page

void removeStyle( [string group_name] );
group_namestringthe name of the group of CSS rules
Details

The removeStyle method removes a group of styles added by the addStyle method. In case the group_name isn't passed, the "default" group of CSS rules will be removed.

We don't recommend to remove the "default" group of CSS rules, as this group is used in Webix inner styling.

See also
Back to top