Categories | Question details Back To List | ||
form + dhtmlxwindow Is it possible to have a form submission results to be displayed in dhtmlxwindow (the main window will not change). thanks Victoria Answer posted by Alex (support) on Nov 18, 2009 05:09 Helo, you can try to use iframe as target for form. <form ... target="actionframe" ..>.... <iframe name="actionframe" id="myiframe"....> ... and this iframe can be attached to the window as object: dhxWins.window(id).attachObject("myiframe") |