Hello
My UltraGrid is bound to a List of some class I wrote, one of this classes properties is another class I wrote, what UltraGridColumn property do I set to specify the path to a property on this inner class? Currently the UltraGrid simply calls ToString on my class, this does not work for me as the ToString is already overridden for other uses.
Thank you for your time and ideas.
Patrick
Hello,
I am just checking about the progress of this issue. Let me know If you need my further assistance on this issue?
Thank you for using Infragistics Components.
Hello ,
You could implement own logic for displaying of a underling value of a cell using IEditorDataFilter interface. On the following link you will find a simple tutorial of how to use this interface :
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/html/Infragistics2.Win.v11.1~Infragistics.Win.UltraWinProgressBar.UltraProgressBar~DataFilter.html
Once you have own implementation of this interface you should assign a new instance of it to the column, which you want to customize its display value. (UltraGridColumn.EditorResolved.DataFilter).
Please let me know if you have any further questions.