Hi All,
We have a smart pdf form with multiple pages, but it only show 1 page at a time, like a wizard or form guide.
And so far we have 2 approaches:
1) From http://www.adobe.com/devnet/livecycle/articles/lc_designer_controller.pdf , i see that the instanceManagers are stored in an array and it try to add/removeInstance whenever user click on the link.
E.g when initialize:
im[currentPageNum].addInstance();
where im[currentPageNum] is an instanceManager.
When navigate to new page:
im[currentPageNum].removeInstance(0);
im[pageNum].addInstance();
2) We store all the page in the array and use the presence attribute instead.
E.g.
im[0].presence="visible";
im[1].presence="hidden";
...
im[9].presence="hidden";
Is there any difference in form performance between 2 approaches?
Thank you,
Regards,
Anh