I have two properties in my viewmodel.
bool Adjust
double DesiredValue
In XamGrid I have this ColumnLayout:
<ig:ColumnLayout Key="Values">
<ig:ColumnLayout.Columns>
<ig:CheckBoxColumn Key="Adjust" HeaderText="Adjust" EditorDisplayBehavior="Always" />
<ig:TextColumn Key="DesiredValue" HeaderText="Desired Value" />
</ig:ColumnLayout.Columns>
</ig:ColumnLayout>
How can I disable the checkbox for Adjust if DesiredValue is equal to double.NaN?