I want to display tick mark [image or icon] instead of checkbox in UltraGrid. This post http://community.infragistics.com/forums/p/37754/218673.aspx#218673 has solution for one grid/column. But I have so many grids[probably 100+], few with editable check box and most of them are read only, I dont want to go and do this in all screens. Is there any way I can do it in a centralized way like .ISL file?
Thanks,
-Se
If you want to do this for your entire application, you could use the static property here:
Infragistics.Win.UIElementDrawParams.CheckBoxGlyphInfo = new CheckBoxImageGlyphInfo(...);
You will have to pass in the images you want into the CheckBoxImageGlyphInfo constructor.
Another option would be to use AppStylist, which gives you a visual designer for the checkbox images.