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