I was wondering if unbounded columns are allow in the GridView. I am try to insert a button after some data that I am returning to perform another event.
1 Answer, 1 is accepted
0
Georgi
Telerik team
answered on 27 Jun 2007, 06:35 PM
Hi teampowers,
Yes, this can be done by using GridViewComandColumn. It is unbound and has internal buttons in every cell. After it is added to GridViewTemplate.Columns collection, you should only attach to the following event:
CommandCellClickEventHandler(radGridView1_CommandCellClick);'> radGridView1.CommandCellClick += new CommandCellClickEventHandler(radGridView1_CommandCellClick);
Please, take a look at the Events grid example where this column is implemented.