how i can hold more than one reutrn value from show modal dialog page
-
i have one popup page with two text boxes by writting winow.return two times i want to pass the textboxes values .how i can hold these values separetly in main page
-
i have one popup page with two text boxes by writting winow.return two times i want to pass the textboxes values .how i can hold these values separetly in main page
u mean to say u want to send the values from popup page to main page... Regards Aavesh
-
u mean to say u want to send the values from popup page to main page... Regards Aavesh
yes sir i have send row value and a column value means to values to main page throug pop up or a show model dialog and how to hold these two values in master page
-
i have one popup page with two text boxes by writting winow.return two times i want to pass the textboxes values .how i can hold these values separetly in main page
You can do it two ways: 1. return the both values separated by some special character like |-| and then split it in the parent page. 2. you can set the field of the parent window from within the modal dialog box like: top.opener.document.getElementById('field1').value = field1; top.opener.document.getElementById('field2').value = field2;
-----
-
You can do it two ways: 1. return the both values separated by some special character like |-| and then split it in the parent page. 2. you can set the field of the parent window from within the modal dialog box like: top.opener.document.getElementById('field1').value = field1; top.opener.document.getElementById('field2').value = field2;
-----
thanks u sir now i used the first one of which u sent .its working now.sir how i can get the iframe source code with html starting and ending tags in another page