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
2035
Support for double click?
posted

It seems that WebDataGrid does not support the double click event on a row?  Am I missing something?  Is this feature scheduled for a future release?

Regards,

Arthur

Parents
No Data
Reply
  • 28464
    posted

    Hello Arthur,

    Indeed, for the time being double click events are not exposed on the grid core and on the grid selection behavior. This will certainly be addressed in next releases of the product, meanwhile you can use something like this to attach double click event on grid row (in this particular example I am attaching double click event on the third row of the grid)

     

                var grid = $find("<%= WebDataGrid1.ClientID %>");
                var gridRow = grid.get_rows().get_row(2);
                gridRow.get_element().ondblclick = function() {
                    alert("Double click");
                }

Children