Row DoubleClick

Hi,
How to show JS alert message while double clicking the GridGroupingControl row.

Thank you.



1 Reply

RS Rajarajeswari S Syncfusion Team July 9, 2008 09:29 AM UTC


Hi Kalyani,

Thanks for using Syncfusion products.

"ClientSideOnRowClick" event of GridGroupingControl will get triggered only on single click of any row. But not for Double click.

Please refer the below code snippet for invoking the single click event:

$sfwg:GridGroupingControl ID="GridGroupingControl1" runat="server" DataMember="DefaultView" DataSourceID="AccessDataSource1" ClientSideOnRecordClick="click()">


function click()
{
alert("SingleClick");
}


Please let me know if you have any other concerns.

Regards,
Raji


Loader.
Up arrow icon