I have a gridview that I wish users to be able to click the View link and it pop up a jquery dialog with more data displayed from the row which the button is in. I am using a link button which displays the pop up but I wish to run server side (asp .net) prior to this in order to populate the fields on the jquery dialog before it is displayed
<asp:LinkButton ID="btnViewDetails" runat="server" Text="View" CommandName="ViewDetails"
CausesValidation="false" CommandArgument='<%#Eval("CustomerID")%>'
OnClientClick="showDialog('viewCustomer');"></asp:LinkButton>
I have tried populating the controls in the RowCommand but this fires after the jquery popup has been displayed, resulting in the next time I click on a row's 'View' button, it displays the data from the previous row that was selected.
Greatly appreciate any help