setValue

defines which view needs to be shown in the Multiview

void setValue(string|number id);
idstring|numberthe id of the view to show

Example

$$("mview").setValue("some_view");

Details

The command is equal to view.show():

$$("mview").setValue("some_view");
// is equal to 
$$("some_view").show();
Back to top
If you have not checked yet, be sure to visit site of our main product Webix javascript framework and page of multi view product.