Jquery Model Window + DataGridview TemplateField

gimmestuff

New Member
I have a gridview on my Page. I want to open a jquery dialog on the click of the linkButton placed inside the itemtemplate of the gridview. I`ve added the js and css files on my master.aspx page. But still it doesnt open.My Jquery CODE:\[code\] $('#gvLCStatus ContentPlaceHolder1_gvLCStatus_lnkbtnShipment_0').dialog({ create: function (event, ui) { }('ContentPlaceHolder1_gvLCStatus_lnkbtnShipment_0').bind("dialogcreate", function (event, ui) {});});\[/code\]MY Gridview ItemTemplate Field:\[code\]<asp:TemplateField> <ItemTemplate> <asp:LinkButton ID="lnkbtnShipment" runat="server">Shipment Status</asp:LinkButton> </ItemTemplate> </asp:TemplateField>\[/code\]I want to Open a Jquery Dialog on the click of this item template field.
 
Back
Top