Anyone have any tricks to get this to work?
function onSaveDone(saveSuccessful) { // Your handler code here.... setTimeout("SayHello()", 500);}function SayHello() { IWDatacapture.displayMessage("Hello World");}
I guess the correct event where you can write such a message is OnSaveValid or OnSave. because on Savedone event, if you dont have any explicit handlers, the DCT will close.The Saving message what you see is displayed during OnSave.