Hello Rhino Developers,
I am working with GridView buttons, and managed to add it to the column by using this :
GridColumn ActionColumn = new GridColumn()
{
HeaderText = "Action",
Resizable = true,
Sortable = true,
Width = 20,
DataCell = CustomCell.Create<Button>()
};
- How Can I add all the Button data? (like text/ size)
- How can I refer to the click button methods when I click on the cell item?
(we can add methods to the gridView events, but how can I add a method to a cell inside a gridview?)
the image shows the current result: