I've searched the forums but have not found the answer.
I have created a custom column (extended column) on my entity. I have a collection of these entities bound to a grid. I can sort (by clicking the DGV header) the basic columns, but when I click the header on my extended column nothing happens. No error, nothing.
I'm wondering if there is something I need to do to support sorting for extended columns?
Here is the code where I'm creating the extended columns (properties)
Code:
1 protected override List GetLocalBindingProperties()
2 {
3 List props = new List();
4 props.Add(new esPropertyDescriptor(this, "StatusTitle", typeof(string)));
5 props.Add(new esPropertyDescriptor(this, "DocumentTypeTitle", typeof(string)));
6
7 return props;
8 }