defines which view need to be shown in the multiview
toshow | id | id of view to show |
$$("mview").setValue("some_view");
Command is equal to view.show
$$("mview").setValue("some_view");
//is equal to
$$("some_view").show();
Back to top