$cssName

name of the widget the CSS of which you want to inherit for a custom widget

string $cssName;

Example

webix.protoUI({
    name:"mymulticombo",
    $cssName:"text",
    //other properties and methods
}, webix.ui.richselect);
 
webix.ui({ view:"mymulticombo"});

Details

By default, a custom widget inherits API of the widgets and mixins that are used for it, but not CSS.

See also
Back to top