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

Grid View Buttons

1 Answer 101 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Pavitra
Top achievements
Rank 1
Pavitra asked on 02 Feb 2011, 10:14 PM
I need to use two button columns on a grid view and to pop up win forms when each button is clicked.
On the cell click event other columns are identified but not the button columns,

How can I fix this??
Any help will be highly appreciated.

:-(

1 Answer, 1 is accepted

Sort by
0
Accepted
Richard Slade
Top achievements
Rank 2
answered on 02 Feb 2011, 10:24 PM
Hello,

For the Command Columns, you'll need to register for a different event. The CommandCellClickEvent

this.radGridView1.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.radGridView1_CommandCellClick);
private void radGridView1_CommandCellClick(object sender, EventArgs e)
{
}

For full information, please see the documentation here. Hope that helps but let me know if you have further questions
Richard
Tags
GridView
Asked by
Pavitra
Top achievements
Rank 1
Answers by
Richard Slade
Top achievements
Rank 2
Share this question
or