AD
Administrator
Syncfusion Team
November 15, 2006 04:10 AM UTC
Hi Thomas,
You can use the ComboBox celltype and set the ShowButton property to GridShowButtons.Hide to remove the dropdown button in a cell. Here is a code snippet.
//code snippet for GridControl.
StringCollection sc = new StringCollection();
sc.Add("True");
sc.Add("False");
this.gridControl1[2,2].CellType = "ComboBox";
this.gridControl1[2,2].ChoiceList = sc;
this.gridControl1[2,2].ShowButtons = GridShowButtons.Hide;
Best Regards,
Haneef