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
260
click event
posted

Hi im using a ultrawebgrid, and i try to use the click event, but it doesn't work all the time, i use a break point to follow it , and each time i click on the grid the event not work 

Parents
No Data
Reply
  • 7694
    posted

    Hello,


    What type event use client side or server side?

    Client side event declaration:

    <displaylayout >
    <ClientSideEvents CellClickHandler="alert('Fire');" />
    ….

    Server side event declaration:

    ASPX:
    <igtbl:UltraWebGrid ID="UltraWebGrid1" runat="server"  onclick="UltraWebGrid1_Click"

    Code-behind:
      protected void UltraWebGrid1_Click(object sender, Infragistics.WebUI.UltraWebGrid.ClickEventArgs e)
        {
    //some code
        }


    What am I missing?

    Could you  please  provide little bit information about UltraWebGrid declaration. ASPX code-behind JS code – anything that can get us started is welcome.

    Thanks.

Children