defines which view needs to be shown in the Multiview
id | string|number | the id of the view to show |
$$("mview").setValue("some_view");
The command is equal to view.show():
$$("mview").setValue("some_view");
// is equal to
$$("some_view").show();
Back to top