AD
Administrator
Syncfusion Team
February 21, 2007 05:16 PM UTC
Hi Kyle,
You can specify when to show or display the cell button of the combobox cell using the ShowButtons property. Here is a code snippet
For GridControl:
this.gridControl1[1, 1].ShowButtons = GridShowButtons.ShowCurrentCell;
For DataBoundGrid:
e.Style.ShowButtons = GridShowButtons.ShowCurrentCell; //QueryCellInfo event
Best regards,
Haneef