Hi All,

I am writing a script which opens a popup window & then creates a table dynamically (data is coming from sqlquery)

I am able to generate the table successfully.

Problem - I want to click on any row & select a cell data, the moment I do this, popup window should get closed & the selected cell data should come in input field on the parent page.

How to achieve this.

Remember - Complete table generation is in script.

Thanks
Chander Kararia

>I want to click on any row & select a cell data, the moment I do this, popup window should get closed...

Learn/Implement window.opener JavaScript property.

eg,

...
window.opener.document.getElementById("parentText1").value = val; 
window.close();
...
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.