This question is locked. New answers and comments are not allowed.
Is this not a bindable property? I get an ParserError trying to bind it to my BO
Basically I want to lock the user out of the cell unless my BO GuiAllowNotApplicable is True and then I will show my N/A CheckBox to modify the settings of BO.IsNotApplicable
Thanks
jack
| <telerikGridView:GridViewDataColumn UniqueName="IsNotApplicable" HeaderText="N/A" DataMemberPath="IsNotApplicable" IsReadOnly="{Binding Path=GuiAllowNotApplicable}"> |
| <telerikGridView:GridViewDataColumn.CellTemplate> |
| <DataTemplate> |
| <TextBlock Text="N/A" Visibility="{Binding Converter={StaticResource ConvertBoolToVisibility}, Mode=OneWay, Path=IsNotApplicable}"/> |
| </DataTemplate> |
| </telerikGridView:GridViewDataColumn.CellTemplate> |
| <telerikGridView:GridViewDataColumn.CellEditTemplate> |
| <DataTemplate> |
| <CheckBox Content="N/A" IsChecked="{Binding IsNotApplicable, Mode=TwoWay}" Visibility="{Binding Converter={StaticResource ConvertBoolToVisibility}, Mode=OneWay, Path=GuiAllowNotApplicable}"/> |
| </DataTemplate> |
| </telerikGridView:GridViewDataColumn.CellEditTemplate> |
| </telerikGridView:GridViewDataColumn> |
Basically I want to lock the user out of the cell unless my BO GuiAllowNotApplicable is True and then I will show my N/A CheckBox to modify the settings of BO.IsNotApplicable
Thanks
jack