Ask a Question related to ASP.NET General, Design and Development.
-
Joseph Yang #1
How to use popup window editing datagrid items?
Hello all,
I have a datagrid bounded with an Arraylist containing contact
objects, and a edit button (<asp:imagebutton/>) in each row
When I click edit button, I want a window popup so I can edit the
selected contact, so when I click this button, I find out which
contact get selected, put it in session
But the problem is: popup window shows up first before I put the
object into the session
Any ideas or suggestions?
Thanks
Joseph
Joseph Yang Guest
-
Long list of items in my datagrid, editing is a pain!!
Hello, I'm loading a datagrid from an XML file. I'm using datagrids edit functionality and its working great. My problem is that this list is... -
popup window from datagrid using asp.net
I have a datagrid control that pulls images into a template column using the following code <asp:TemplateColumn HeaderText="Image">... -
Popup Window in a DataGrid
Hi, Do u know how to make a HyperLinkColumn in a DataGrid that would pop up a new window with details of the row that the user clicked on. I... -
dataGrid - link - popup window
I need to create a datagrid where the column headers (not the items) are links. When a user clicks on a link, it brings up a popup window. I guess... -
refreshing main window after editing in popup
Hi all i have 3 popup windows, in which i can add, edit and delete records from a table, now after user is done, i want to refresh main window,... -
S. Justin Gengo #2
Re: How to use popup window editing datagrid items?
Joseph,
How about creating the popup window by calling it using the body tag as a
server control?
What this means is that your page would post back where you would set the
session variable, then you would attach the javascript for the popup to the
body tag using the onload event. This way the session would be set before
the popup window is created.
I have sample code on how to use the body tag as a server control on my web
site, [url]www.aboutfortunate.com[/url], just search the code library for: "body tag
used as server control" or something similar.
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Joseph Yang" <josephydy@yahoo.ca> wrote in message
news:cfa920d.0308081618.361e1f9e@posting.google.co m...> Hello all,
>
> I have a datagrid bounded with an Arraylist containing contact
> objects, and a edit button (<asp:imagebutton/>) in each row
>
> When I click edit button, I want a window popup so I can edit the
> selected contact, so when I click this button, I find out which
> contact get selected, put it in session
>
> But the problem is: popup window shows up first before I put the
> object into the session
>
> Any ideas or suggestions?
>
> Thanks
>
> Joseph
S. Justin Gengo Guest



Reply With Quote

