Is it possible to set a combobox column to null? I currently have the following shell of code:
private void RadGV_Records_KeyDown(object sender, KeyEventArgs e)
{
if (RadGV_Records.CurrentColumn.GetType().ToString() == "Telerik.WinControls.UI.GridViewComboBoxColumn")
{
if (e.KeyCode == Keys.Delete)
{
}
}
}
Inside the "if (e.KeyCode == Keys.Delete)", I want to set the current combobox value to null or empty, like it is before the user selects anything from the box.
private void RadGV_Records_KeyDown(object sender, KeyEventArgs e)
{
if (RadGV_Records.CurrentColumn.GetType().ToString() == "Telerik.WinControls.UI.GridViewComboBoxColumn")
{
if (e.KeyCode == Keys.Delete)
{
}
}
}
Inside the "if (e.KeyCode == Keys.Delete)", I want to set the current combobox value to null or empty, like it is before the user selects anything from the box.