I have a grid view which has a grouping, I want to have a button within the group, is it possible, the image has been attached & I want a button next to
"Rule Name :Galaxy"
Thanks
Regards
Ramraj
1 Answer, 1 is accepted
0
Dimitar
Telerik team
answered on 29 Sep 2015, 02:36 PM
Hi Ramraj,
Thank you for writing.
You can create a custom GridGroupContentCellElement class, where you can add the button:
public class CustomCellElement : GridGroupContentCellElement
{
public CustomCellElement(GridViewColumn column, GridRowElement row)
if (e.CellType == typeof(GridGroupContentCellElement))
{
e.CellElement = new CustomCellElement(e.Column, e.Row);
}
}
I hope this will be useful.
Regards,
Dimitar
Telerik
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 Feedback Portal and vote to affect the priority of the items