Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
160
Converter on a Field
posted

According to the online documentaion there is a Converter property on a Field in a XamDataGrid.

http://help.infragistics.com/Help/NetAdvantage/WPF/2007.2/CLR3.X/html/Infragistics3.Wpf.DataPresenter.v7.2~Infragistics.Windows.DataPresenter.Field~Converter.html 

This property does not appear in the xaml when I attempt to use it. Am I doing something wrong? What I am trying to do is create a Y/N to True False so it can be used by a checkbox in my datagrid. I saw a couple examples that provided a new template with a checkbox inside it but I really dont want to use that approach unless I am forced too. Here is what I have so far. I just need a way to convert my 'Y' or 'N' value to check or uncheck the box.

<igDP:Field Name="COL_NAME" Label="Blah">
 <igDP:Field.Settings>
  <igDP:FieldSettings EditAsType="{x:Type sys:Boolean}"/>
 </igDP:Field.Settings>
</igDP:Field>

Thanks

Parents Reply Children