I'm new to using Livecycle. I just imported a PDF document that I originally created in Open Office Writer and now am attempting to make it into an interactive, fillable reservation that populates date fields based on whatever radio button is selected.
It looks a little like this:
Let's say button 1, which corresponds to Nov 1 - Nov 12 is selected. Then the ten weekday fields below will each fill with the corresponding dates (Monday, 11/01/2010; Tuesday, 11/02/2010; etc).
How do I get this to work using javascript running client side without using a database or table (I can code it all)?
In the Click event of each radio button, do
There's probably a way to do a switch/case statement in the radio button list object, but I haven't been able to make it work by putting the following code either in the Change or the Click events. Perhaps someone else can post a more elegant answer.