When I edit the control's template at Generics.xaml with the following code, the controls doesn't render.
| <Popup x:Name="PART_Popup" AllowsTransparency="True" IsOpen="{Binding IsDropDownOpen, RelativeSource={RelativeSource TemplatedParent}}" Placement="Bottom" StaysOpen="False"> |
| <Grid x:Name="DropDownRoot"> |
| <telerikInput:RadCalendar x:Name="CalendarElement" /> |
| </Grid> |
| </Popup> |
If I remove the Name it renders, but doesn't have interaction with the other components of the control such as the PickerTextBox.
If I edit the control's template at user control resources all works fine.
Regards and thank you in advance.