Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
221
get ultrawebgrid templated column button click event
posted

Hi,

I have a button in the templated column of ultraweb grid.

How can i get the templated column button click event .

Thanks in advance.

Parents
  • 7694
    posted

    Hello,

    Please take a look  at the code below:

    ASPX:
    <Columns>
                            <igtbl:TemplatedColumn>
                                <CellTemplate>
                                    <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click"/>
                                </CellTemplate>
                            </igtbl:TemplatedColumn>

    C#:
      protected void Button1_Click(object sender, EventArgs e)
        {
             // TO DO
        }

     

    Hope this helps

Reply Children