state

определяет размер Sidemenu и его положение на экране

function state;

Values

  • state
    object
  • Example

    webix.ui({
        view: "sidemenu",
        width: 200,
        position: "left",
        state:function(state){
            // get the toolbar's height
            var toolbarHeight = $$("toolbar").$height;
            // increase the 'top' property
            state.top = toolbarHeight;
            // decrease the 'height' property
            state.height -= toolbarHeight;
        };
    });

    See also
  • Articles
  • Наверх