0

I have boolean Property SpecValue what indicates that other property can be modified.

I can't find good solution how to do it.

I use next solution, but there is some bugs.

<xcdg:Column Title="Value" FieldName="Value"  Width="100" MaxWidth="100" MinWidth="100">    
<xcdg:Column.CellEditor>
    <xcdg:CellEditor>
        <xcdg:CellEditor.EditTemplate>
            <DataTemplate>
                <TextBox x:Name="txtSpecVal" Text="{xcdgg:CellEditorBinding}" IsReadOnly="False"/>
                <DataTemplate.Triggers>
                    <DataTrigger Binding="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type xcdg:Row}},Path=DataContext.SpecificValue}" Value="False">
                        <Setter TargetName="txtSpecVal" Property="IsReadOnly" Value="True"/>
                        <Setter TargetName="txtSpecVal" Property="BorderBrush" Value="Transparent"/>
                    </DataTrigger>
                </DataTemplate.Triggers>
            </DataTemplate>
        </xcdg:CellEditor.EditTemplate>
    </xcdg:CellEditor>
</xcdg:Column.CellEditor>

barbarian
  • 1,559
  • 6
  • 20
  • 26

1 Answers1

1

This should work, This is an example of a style that targets DataCell and sets the "SpecificValue" cell's enabled property to false whenever it's own value is false. It should help you get started.

    <Style.Triggers >

        <MultiDataTrigger>

          <MultiDataTrigger.Conditions>

              <Condition Binding="{Binding RelativeSource={RelativeSource self}, 
                                                        Path=ParentColumn.FieldName}"
                          Value="SpecificValue"/>

              <Condition Binding="{Binding
                                                        RelativeSource={RelativeSource self}, 
                                                        Path=ParentRow.DataContext.SpecificValue}" 
                          Value="false"/>

          </MultiDataTrigger.Conditions>

          <Setter Property="Background" Value="Green" />
          <Setter Property="IsEnabled" Value="False" />
        </MultiDataTrigger>
    </Style.Triggers>
  </Style>

You can also refer to the following blog post for a similar detailed example: http://xceed.com/CS/blogs/techside/archive/2011/07/06/datacell-styling-vs-cellcontenttemplate.aspx

Dahdahm
  • 513
  • 3
  • 16