Hi aks,i tried var finish = parent.document.getElementById("iw.base.wizard.finish.button");but the above method returns javascript method rather than any id.and hence if i try to do,parent.document.getElementById("iw.base.wizard.finish.button").setVisible(false); nothing happens.It seems we need to get the id of the Finish button which we are not getting through the above code.Any idea of how to get the id of Finish button?Thanks jeetu
Hi,Is there any way to remove Finish button from DCT.I know that we can remove Save,Save as , Preview and Generate button.I am using TS6.5 on win 2000.RegardsJeetu
Did you ever got a change to modify the functionality of Finish Button. Ideally, I wanted to save and close the window when user clicks on Finish button in a DCT. Can someone help?
function customFinish () { try{ var finish = parent.document.getElementById("iw.base.wizard.finish.button"); finish.href='javascript:parent.getScriptFrame().customFinishHandler();'; } catch(e){ alert("Finish button Not Found"); }}function customFinishHandler() { alert("Your Custom Finish Code here"); if(confirm("Do you want to follow with original IWOV \"Finish\" Process?")) { top.iw_wizard_doFinish(); }}