how to create a multi page data capture form?? what i want is if i have 10 field in my DCT i want 6 of them to be on one page and then the user must click on a checkbox or a link to go to next page to fill the rest of the form. can this be done??
If you have set items-per-page attribute to 1 in templating.cfg for required datatype, it means each container in your DCT will be displayed on one page (in case of containers within container only outside container will be treated as a page).You can add first 6 items in one container and next four items in another container which will make you DCT as 2 page DCT.You can use IWDatacapture.gotoPage(2); to goto next page.Hope this helps!