Asp.net 2.0 Gridview control problem
-
Dear All, I have a problem in asp.net gridview control.I've put a textbox and an image button in the footer row.I want a popup window to be viewed when I click this image button.In this popup window there is a link button I want to pass its text to textbox in the parent window(that is in the gridview footer). I hope my question is clear. Many thanks and best regards. Hassan Amaar.
Hassan Amaar
-
Dear All, I have a problem in asp.net gridview control.I've put a textbox and an image button in the footer row.I want a popup window to be viewed when I click this image button.In this popup window there is a link button I want to pass its text to textbox in the parent window(that is in the gridview footer). I hope my question is clear. Many thanks and best regards. Hassan Amaar.
Hassan Amaar
Hi there, Look for something called Modal Dialog in Javascript, in which it gives you the ability to Show Popup Window with a content of your choise. P.S: this is not a GridView Control problem ! ;P
Sincerely Samer Abu Rabie Imagination is more important than knowledge !
-
Dear All, I have a problem in asp.net gridview control.I've put a textbox and an image button in the footer row.I want a popup window to be viewed when I click this image button.In this popup window there is a link button I want to pass its text to textbox in the parent window(that is in the gridview footer). I hope my question is clear. Many thanks and best regards. Hassan Amaar.
Hassan Amaar
Hi Hassan, If I have not misunderstood your problem, then you can achieve it by using following javascript code which should be attached with the client side onclick event of the linkbutton : window.opener.document.getElementById("ctl00_ContentPlaceHolder1_txtBox").value = val; I really hope that it will sove your issue. :-\ Regards Saanj
Either you love IT or leave IT...