Reputation: 33
How add different controls in one column GridView?
I want it to be like this.
Without creating separate gridviews, for other controls.
Upvotes: 0
Views: 129
Reputation: 3858
As far as I see, each row has its own type and the same editor should edit cells in this row. For this scenario, I think it's better to use the Vertical Grid instead of the Grid View.
If you still wish to use the Grid View, use the GridView.CustomRowCellEdit and GridView.CustomRowCellEditForEditing events to assign the required editor to a grid cell.
Upvotes: 2