I have a radgrid with a dropdown template for filtering. If there are null values, the dropdown displays a blank row.On click of this nothing happens. How can I catch this and display IS NULL?
what should the filterExpression be so that all NULL rows are filtered.
void RadComboBoxControl_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e) { string filterExpression; filterExpression = "([" + colname + "] ='" + e.Value + "')"; if (e.Value.Equals("All")) filterExpression = " "; radgrid.MasterTableView.FilterExpression = filterExpression; selectedValue = e.Value; radgrid.MasterTableView.Rebind(); }if (e.Value.Equals(""));