2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
Display the radio buttonWhen the RadioButton is assigned as a CellType in the grid cells without using other properties, the RadioButton is not displayed in those cells. As a result, an empty space is shown. Solution: To resolve this problem, use the ChoiceList property to set the values to the RadioButton that is displayed. The number of RadioButtons are displayed based on the number of values given in the collection. C# //Sets the column 1 celltype as RadioButton this.gridGroupingControl1.TableDescriptor.Columns[1].Appearance.AnyRecordFieldCell.CellType = GridCellTypeName.RadioButton; StringCollection collection = new StringCollection(); collection.AddRange(new string[] { "one", "two" }); //Sets the choice list to display the RadioButton this.gridGroupingControl1.TableDescriptor.Columns[1].Appearance.AnyRecordFieldCell.ChoiceList = collection; VB 'Sets the column 1 celltype as RadioButton Me.gridGroupingControl1.TableDescriptor.Columns(1).Appearance.AnyRecordFieldCell.CellType = GridCellTypeName.RadioButton Dim collection As New StringCollection() collection.AddRange(New String() { "one", "two" }) 'Sets the choice list to display the RadioButton Me.gridGroupingControl1.TableDescriptor.Columns(1).Appearance.AnyRecordFieldCell.ChoiceList = collection After applying the properties, the grid is shown as follows.
Note: GridControl and GridDataBoundGrid have the same procedures to display the RadioButtons in the grid cells. Samples: C#: RadioButtonC# VB: RadioButtonVB |
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.