Hello,
I have a GridView with a HierarchyChildTemplate with two datatriggers :
01.
<
telerik:RadGridView.HierarchyChildTemplate
>
02.
<
DataTemplate
>
03.
<
DockPanel
>
04.
.......
05.
</
DockPanel
>
06.
<
DataTemplate.Triggers
>
07.
<
DataTrigger
Binding
=
"{Binding Name}"
Value
=
"Value1"
>
08.
<
Setter
TargetName
=
"Border1"
Property
=
"Visibility"
Value
=
"Visible"
/>
09.
</
DataTrigger
>
10.
<
DataTrigger
Binding
=
"{Binding Name}"
Value
=
"Value2"
>
11.
<
Setter
TargetName
=
"Border2"
Property
=
"Visibility"
Value
=
"Visible"
/>
12.
</
DataTrigger
>
13.
</
DataTemplate.Triggers
>
14.
</
DataTemplate
>
15.
</
telerik:RadGridView.HierarchyChildTemplate
>
With Rad Controls WPF 2010 Q1 triggers work fine.
With Rad Controls WPF 2010 Q2 (or Q2 SP1) triggers don't work (If I use a converter in the binding and put a breakpoint in the converter the breakpoint is never reached).
The only change is the version of Rad Controls.
Could you help me ?
Thanks in advance.
Patrick