sets the currently visible tab
webix.ui({
view:"filemanager", id:"fm",
mode: "cards"
});
$$("fm").config.mode = "double";
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";