mode

sets the currently visible tab

string mode;

Values

  • list
  • cards
  • double
  • Example

    webix.ui({
        view:"filemanager", id:"fm",
        mode: "cards"
    });
     
    $$("fm").config.mode = "double";


    Default value:

    list
    Details

    The reactive property sets the currently/initially visible tab. Refreshing is not required as the change will be applied immediately.

    You can also access and alter this property via the widget state:

    $$("fm").getState().mode = "double";
    See also
    Back to top