Documentation

setValue

defines which view need to be shown in the multiview

void setValue(idtoshow);

Parameters

toshowidid of view to show

Example

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

Details

Command is equal to view.show

    $$("mview").setValue("some_view");
    //is equal to 
    $$("some_view").show();
Back to top