I have a GridControl with a loaded datatable to it (with datasource):
DataTable table = GetData();
GridControl1.DataSource = table;
How can I add a column of comboboxes?
I have a GridControl with a loaded datatable to it (with datasource):
DataTable table = GetData();
GridControl1.DataSource = table;
How can I add a column of comboboxes?
You can use the below code, after assigning the datasource into the DataGridView, we have to do the following code.