I have a xamGrid that is bound to a table with a column that is a boolean. Of course the value is displayed as true/false and I need to have it displayed as t/f. How to I do this?
Hi stevedm,
You can use TextBoxColumn and and provide value converter:
<ig:XamGrid x:Name="igGrid"> <ig:XamGrid.Columns> <ig:TextColumn Key="BoolData" ValueConverter="{StaticResource boolConvertor}"/> </ig:XamGrid.Columns> </ig:XamGrid>
If this is not what you want you could use Template column and provide specific data template.
Here you can find more information on the grid's columns.
Hope this helps.