css
the name of the CSS class or the object with styles that will be applied to the view container
let css: string|object
Example
Section titled “Example”<style>.myClass { font-style: italic;}</style>~~~
~~~jswebix.grid({ css:"myClass" ...});
also check the next samples:
Details
Section titled “Details”Setting the parameter, for example, to the “myClass” value will produce HTML like this:
<div class='myClass'>...</div>
css can also be an object with styles:
webix.grid({ css:{"font-style": "italic"}, ...});
This will produce HTML with a CSS class with an auto-generated name.
See also
Section titled “See also”Articles