Hi,
I have a multiview within a multiview and I would like to set the page of the child multiview before navigating to it in the parent view in order to avoid two animations. Is this possible?
Thanks,
James
Hi,
I have a multiview within a multiview and I would like to set the page of the child multiview before navigating to it in the parent view in order to avoid two animations. Is this possible?
Thanks,
James
Hi James,
Try to call show() method for the child view, and then for multiview:
dhx.ui({
view:"multiview",
cells:[
...
{
view: "multiview",
id: "views",
cells:[
....
{ id: "child",.. },
...
]
}
...
]
});
...
$$("child").show();
$$("views").show();