Automatically populate properties - hiding pages
Status: Beta
Brought to you by:
teknopaul
Hi,
Say, If i take the FQDN name on the first screen, I would like to automatically populate it next 4-5 screens and go directly to the last screen.
Rite now, it does not populates the fields in the consequtive pages unless the page is displayed.
Can this be fixed???
mickscool
Logged In: YES
user_id=616485
Originator: NO
Off the top of my head I think it might be tricky. What if I added an ifProperty attribute to the antinstaller-property embeded AntTask which could be launched from a postTarget?
e.g.
<antinstaller-property ifProperty="${FQDN}!=null" name="port" value="80"/>
<antinstaller-property ifProperty="${FQDN}!=null" name="blah.prop" value="blah.default"/>
This might solve your problem without having to fiddle with the ifProperty logic.
Let me know if this sounds viable.