config

shows whether the configuration form is opened

boolean config;

Example

webix.ui({
view: "pivot",
config: true,
//...
});


Default value:

false
Details

config can also be accessed via getState():

$$("pivot").getState().config = true;
Back to top