Hi,
I have created a pdf survey using Adobe LifeCycle Designer. But wasn't able to implement the skip patterns in the survey. Does anyone have experience in implementing skip pattern in LifeCycle Designer.?
Thank you
Regards
Manilka
Solved! Go to Solution.
Views
Replies
Total Likes
Hi Manika,
Here is an example that shows how to script using the presence property: http://assure.ly/h7whb8.
While you can set an objects presence to "invisible". it will still take up space on the form. You will want to use "hidden", which frees up the space and in a flowed form will move objects up to take up the free space.
Let's say you have a question with a Yes and No answer (using radio buttons) and a hidden subform "additionalQuestion". Then in the click event of the radio button exclusion group, the following will show the hidden subform on Yes:
if (this.rawValue == "Yes")
{
additionalQuestion.presence = "visible";
}
else
{
additionalQuestion.presence = "hidden";
}
This example looks at the difference between Flowed subforms (what you will need) and Positioned subforms (default type): http://assure.ly/eSGQMt.
Also here are some examples that might help:
Hope that helps,
Niall
Views
Replies
Total Likes
Hi,
You could set this up, but you would need to follow a few steps:
There are plenty of examples of flowed forms and showing/hiding objects.
Hope that helps,
Niall
Views
Replies
Total Likes
Hi Niall,
Thank you for replying, bt im new to LifeCycle Designer so dont quite understand what you explain. Do you have any sample coding.
Regards
Manilka
Views
Replies
Total Likes
Hi Manika,
Here is an example that shows how to script using the presence property: http://assure.ly/h7whb8.
While you can set an objects presence to "invisible". it will still take up space on the form. You will want to use "hidden", which frees up the space and in a flowed form will move objects up to take up the free space.
Let's say you have a question with a Yes and No answer (using radio buttons) and a hidden subform "additionalQuestion". Then in the click event of the radio button exclusion group, the following will show the hidden subform on Yes:
if (this.rawValue == "Yes")
{
additionalQuestion.presence = "visible";
}
else
{
additionalQuestion.presence = "hidden";
}
This example looks at the difference between Flowed subforms (what you will need) and Positioned subforms (default type): http://assure.ly/eSGQMt.
Also here are some examples that might help:
Hope that helps,
Niall
Views
Replies
Total Likes
Hi Niall,
Thank you.
Regards
Manilka Nilanga
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies