This question is locked. New answers and comments are not allowed.
Hi,
I am using RadGridView with columns bound to string properties of objects bound to grid. If the value in object for columns is null, it displays [null] in column filter, however clicking on checkbox next to null doesn't filter any data.
However if instead if I make column return empty string as shown below, the filter shows [empty] option and it works perfectly.
How can I make filter work when it has [null]?
public class SampleModel: ModelBase { public string Name { get { return _name == null ? string.Empty : _name; } set { _name = value; DoPropertyChanged(() => Name); } }}