factory

creates inner views of a dashboard according to the specified scheme

function factory;

Example

webix.ui({
    view:"dashboard", id:"grid",
    gridColumns:4, gridRows:4,
    factory:function(obj){
        // your logic here 
    }
});

Related samples

Details

The factory function takes one parameter:

  • obj - (object) the configuration object of a created view
See also
Back to top