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
105
UltraWebGrid
posted

I understand what the native functions look like on the javascrip side, but do not understand what the call looks like in the markup(aspx). In other words igtbl_getGridById(gridid), but what does the call look like in the aspx markup code <ig:element onsomething="?????????"

 

Hope my question is clear.

 

Thanks,

Demetrius

Parents
  • 28464
    posted

    Hello Demetrius, 

    I believe you are looking for the Client Side Object Model of the grid (CSOM) and client-side events in particular

    All client-side events are documented here: 

    http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR3.5/html/WebGrid_Client_Side_Events_CSOM.html 

    In ASPX, they are specified like that (directly in the DisplayLayout ->ClientSideEvents collection)

         <igtbl:UltraWebGrid
            ID="UltraWebGrid1"
            runat="server"
            Width="725px"
            DataSourceID="AccessDataSource1">
           
            <DisplayLayout>
                <ClientSideEvents DblClickHandler="doubleClickHandler" />
            </DisplayLayout>

Reply Children
No Data