Hi, I have an event handler if the user selects something in a gridview it will cause another control to become visible.
gridview_onselectchange() { otherControl.Visible = true; }
My problem is that if I do it this way it will render the otherControl incorrectly. It is supposed to be within a table cell so it aligns next to another thing perfectly, but when I set it visible in this way it renders below the table.
If i put the same logic in Page_Load the problem goes away, so I suspect that it is because the rendering is taking place before gridview_onselectchange() is getting called.
How would I fix this?
Thanks.
...
Go to the complete details ...