the name of a css class that will be applied to the view container
webix.ui({
view:"datatable",
css:"myclass",
...
});
Setting the parameter, for example, to the "myClass" value will produce HTML like this:
<div class='myClass'>...</div>
Back to top