I have xml data that comes in the form of "Y", "N", and "". I have a field defined with the converter but my grid fails to render any of the columns when I try to do this. Any Ideas?
<igDP:Field Name="read_only" Label="Read Only" DataType="{x:Type sys:Boolean}" Converter="{StaticResource MyBooleanConverter}"/>
{
}
else
Hello,
To get this to work, I had to modify the XAML accordingly:
<igDP:Field Name="read_only" Label="Read Only" DataType="{x:Type sys:String}" Converter="{StaticResource MyBooleanConverter}"> <igDP:Field.Settings> <igDP:FieldSettings EditAsType="{x:Type sys:Boolean}" /> </igDP:Field.Settings></igDP:Field>