Hiya -
Firstly to clarify your last - your saying the internal build will fix my first problem with the HH:MM formatting, right? (as opposed to the documentation issues). If so no problem as I need to download it for another reason anyway.
Secondly, still having some trouble with the header. The new code works fine with a hardcoded value except that in my earlier example you will see I am binding to get the language localized text. This fails every time; I'm not a xaml expert but I assume (as the same line works fine on a textblock) that it doesn't work because the binding is inside a <Setter> Maybe I need a different binding path?
When I tried a workaround of setting it in code, myHeader is null, which kinda makes sense, maybe I need a .SetValue() of some kind but in any regard I expect to be able to still bind my localized name like in the previous version of the control. How to make this work again?
<telerikInput:RadTimePicker.ClockStyle>
<Style TargetType="telerikInput:RadClock">
<Setter Property="Header" x:Name="myHeader" Value="Clock" />
</Style>
</telerikInput:RadTimePicker.ClockStyle>
myHeader.Value = MappingStrings.LengthQuestion; // FAILS with null