I have a modal window that I can get to work just fine from a button in the user control but how do I get the rad window to start up from a template column in a grid view inside that user control that looks something like this:
<telerik:GridTemplateColumn HeaderText="" UniqueName="ConfirmNo" AllowFiltering = "false"><ItemTemplate>
<asp:Button ID="btnConfirmNo" runat="server" Text="No" CommandArgument='<%# Eval("_DocumentID") %>' CommandName="ConfirmNo" /> <asp:Label ID="lblConfirmNo" runat="server" CssClass="formLabel"></asp:Label> </ItemTemplate> <HeaderStyle HorizontalAlign="Center" /> <ItemStyle HorizontalAlign="Center" Width="5%" /></telerik:GridTemplateColumn>