This is a migrated thread and some comments may be shown as answers.

RadGrid Server-side RowClick

2 Answers 107 Views
Grid
This is a migrated thread and some comments may be shown as answers.
TMLP
Top achievements
Rank 1
TMLP asked on 23 Nov 2009, 11:15 PM
Hi,

I am using a RadGrid Control and I am capturing RowClick event on server side. My code looks like..:
protected void Grid_InItemCommand(object source, GridCommandEventArgs e)
{
    if(2.CommandName == "RowClick" && e.Item is Telerik.Web.UI.GridDataItem)
         ....
}

It works fine. But, I am wondering if I can capture dobleclick events. I looked through Telerik documentation but couldn't find it (only client side example is there). Is this possible?

Thanks.

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 24 Nov 2009, 04:56 AM
 
0
Accepted
Princy
Top achievements
Rank 2
answered on 24 Nov 2009, 05:01 AM
Hi,

Here's the link to a KB article which explains on how to perform a postback on RowDoubleClick. This can probably help you achieve your scenario.
Performing postback from grid client events

Thanks
Princy.
Tags
Grid
Asked by
TMLP
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or