hello,
i used the datagrid with XPCollection from Devexpress.
i used tips from some previous thread like this
public class SfDataGridExt : SfDataGrid
{
private object itemSource;
.....
public virtual void OnItemSourceChanged()
{
DataSource = (ItemSource as XPCollection).Cast<XPObject>();
}
then i ran app an in UI i tried filter columns (int, datetime etc) with after, after equal condition and then app crashed with error.
"Binary operator GreaterThan is not defined for the types System.Object and System.Object."
I don't understand why is it happennig and what i should do to override operator like GreaterThan .
CellType of specific column is set to Numeric.
Thanks in adavnce for your suggestions!
Best regards!
Honza