| Author |
Submitting a pop-up window
|
sachin pachpute
Ranch Hand
Joined: Aug 05, 2004
Posts: 35
|
|
I am developing a struts application in which opening a new window through java script. I want to write few content to this new window and the SUBMIT it. I am succeeded till writing contents to this new window but not able to submit it. My code reads, function openNewWindow() { myWindow = window.open("\popupWindow.html", "tinyWindow", 'toolbar,width=150,height=100') myWindow.document.write("Welcome to this new window!") myWindow.document.bgColor="lightblue" myWindow.document.close(); myWindow.submit(); } Does window.submit() works? please advice.(I know contents on this new wondow will be not be visible but thats my requirement....this is just for populating my ActionForm)
|
 |
Jaikiran Pai
Marshal
Joined: Jul 20, 2005
Posts: 8141
|
|
|
You are supposed to submit a form and not a window.
|
[My Blog] [JavaRanch Journal]
|
 |
sachin pachpute
Ranch Hand
Joined: Aug 05, 2004
Posts: 35
|
|
|
Thanks a lot, I made a chande "myWindow.document.forms[0].submit();" and it worked
|
 |
 |
|
|
subject: Submitting a pop-up window
|
|
|