Documentation

icon

sets an icon type

string icon;

Example

webix.ui({
    rows:[
        { view:"icon", icon:"mail"},
        { view:"icon", icon:"users"}
        ]
});

See also

Details

Icons can be defined as

  • separate views;
  • button types;
  • CSS classes.

Icon types are taken from Font Awesome.

Back to top