I have added a GridViewMultiComboBoxColumn column from code behind into a gridview. Everthng works well but the drop down is very narrow and does not display the entire contents in each row. What is the best way to size this control so that all values are displayed in its entirety. Some of the things I have tried did not work.
cboCategory.FieldName =
"Category"
'cboCategory.HeaderText = "Category"
cboCategory.DataSource = objDT
cboCategory.ValueMember =
"Category"
cboCategory.DisplayMember =
"Category"
'cboCategory.Width = 0.2 * Me.RadQueuedFiles.Width
cboCategory.AutoSizeMode = BestFitColumnMode.DisplayedDataCells
'cboCategory.BestFit()