Hi,What is the syntax for setting timeout .I used the one mentioned in the formapi pdf, but that is giving some error.
I am getting the JS error 'Object expected'setTimeOut('callServerFailed()', 60000);IWDatacapture.callServer("http://"+server+"/iw-bin/templating/btgsportal/ipl/metadata/file_exists.ipl",params,true);
Kaalraa,That issue got solved.I was using setTimeOut .It is case-sensitive and setTimeout is the corret oneO should be in small case
Wow, I wasted a few hours on this one. The syntax in the Teamsite 6.7 FormAPI Developers guide is wrong; timeout = setTimeOut("callServerFailed", 60000); - should be: timeout = setTimeout(callServerFailed, 60000); -- Notice the removal of the quotes...as well as the lower case 'o' - Just goes to show you you should not rely on the provided documentation for javascript examples I guess...or at least Google the function. doh!