Documentation

css

the name of a css class that will be applied to the view container

string css;

Example

webix.ui({
    view:"datatable",
    css:"myclass",
    ...
});

See also

  • samples
  • articles
  • Details

    Setting the parameter, for example, to the "myClass" value will produce HTML like this:

    <div class='myClass'>...</div>
    Back to top