Documentation

headermenu

adds a headermenu to control column visibility

boolean| object headermenu;

Available only in PRO Edition

Example

//simple config
webix.ui({
    view:"datatable", 
    headermenu:true
});
 
//complex config
webix.ui({
    view:"datatable", 
    headermenu:{
        width:250, 
        autoheight:false, 
        scroll:true
    }
});

See also

Details

The whole list of parameters that help configure the header menu can be found in the related article.

Back to top