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

Regarding "EnablePostBackOnRowClick" property

2 Answers 34 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Sanjay Singh
Top achievements
Rank 1
Sanjay Singh asked on 01 Jun 2010, 08:04 PM

Requirements

RadControls version

.NET version

Visual Studio version

programming language

browser support

all browsers supported by RadControls


PROJECT DESCRIPTION
Which event in code behind captures after post back when "EnablePostBackOnRowClick" is set to true

2 Answers, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 01 Jun 2010, 09:52 PM
Hello Sanjay,

Please examine the following help topic or try the code-snippet :
Making postback/ajax request on client row click

protected void RadGrid1_ItemCommand(object source, GridCommandEventArgs e)
{
    if (e.CommandName == "RowClick")
    {
        //...
    }
}

Regards,
Daniel
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Sanjay Singh
Top achievements
Rank 1
answered on 01 Jun 2010, 10:12 PM
Thanks......
Tags
Grid
Asked by
Sanjay Singh
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Sanjay Singh
Top achievements
Rank 1
Share this question
or