if the bound object has a "Brws" property, I make that column buttons:
GridBoundColumn c = grid.Binder.InternalColumns["Brws"];
if (c != null)
{
GridStyleInfo info = c.StyleInfo;
info.CellType = "PushButton";
info.Description = "Brws";
}
This works fine except, when i modify a grid style through PropertyGrid, for example, back color. the buttons immediately become text boxes.
Is there a way to work around this, or if I should handle this in a different way?
Thanks,
Chunhui