Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
FormAPI
Smeeta
How can I get FormAPI to fire on form load? I can get this to work once I load up the form and then change a value on a item. However I would like to hide a element on loading the form since I am having trouble with the hidden element and a inline command that executes a perl script and returns a value to the hidden element.
I have seen previous postings where people recommended to use FormAPI instead. Could someone tell me how I can get FormAPI to fire on loading up the form itself.
Find more posts tagged with
Comments
Migrateduser
If you include a <script> element inside the <ruleset>, any code you add inside the <script> will execute as soon as the DCT is loaded. Thus,
<script><![CDATA[
alert("Hello world!");
]]></script>
should pop up the ubiquitous global greeting as soon as the form loads.
bw
Bob Walden [bob.walden@interwoven.com]
Interwoven Education Group
IM: Yahoo, MSN bob_walden
Smeeta
thanks it is working for me now