DataGridView ComboBox Cell Value Clear
Hi,I want to know how to clear the datagridview combobox cell item values which kept inside the datagridview.Means Clearing all the values inside the datagridview combobox column.
protected void void Item_Bound(Object sender, DataGridItemEventArgs e)
{
if(condition)
{
cmb.Items.Clear();
}
}
((DataGridViewComboBoxCell)row.Cells["Column1"]).Items.Clear()