Click here to Skip to main content
15,921,452 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
pass values from child page grid view thats popup in the jquery light box to parent page textboxes when double click on the grid row
Posted

1 solution

C#
function setValues()
   {
//popup window element value
       var txt = document.getElementById("text").value;
      
//parent window element to set value as 
       opener.document.getElementById("text").value = txt;
       self.close();
       return false;
   }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900