My application contains a `RadGridView` control, which has the columns defined in the XAML. The last column is a `GridViewImageColumn` that is bound to one of several different images in the program resources, based on the value of a property in the ViewModel object. The images represent a quality of data enumeration: Good is a Green circle, OK is a Yellow circle, Bad is a Red circle, and N/A is a Grey circle.
Everything displays fine until you click on the Filter icon and open the filtering box. What gets displayed at that point are the pack URIs to the image resources that are being displayed, not the images. I'd rather have the images displayed, or a string that describes what the image represents (that is, Green / Yellow / Red / N/A).
How do I modify the control so it displays the images in the Filter box instead of the image URIs?
Everything displays fine until you click on the Filter icon and open the filtering box. What gets displayed at that point are the pack URIs to the image resources that are being displayed, not the images. I'd rather have the images displayed, or a string that describes what the image represents (that is, Green / Yellow / Red / N/A).
How do I modify the control so it displays the images in the Filter box instead of the image URIs?