I've recently upgraded to version RadControls_for_WPF_2010_1_0603_DEV.msi
I have a RadNumericUpDown control inside a DataTemplate, that gets selected via a TemplateSelector, and the NumberFormatInfo seems to have no effect. Is this problem back, or was it ever fixed in a non-service pack release?
Following is my XAML code block that defines the RadNumericUpDown:
<telerik:RadNumericUpDown Grid.Row="3" Grid.Column="1"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Foreground="Black"
IsEnabled="{Binding ElementName=IsAssignedInspectorCheckBox, Path=IsChecked}"
Value="{Binding Path=Response.ResponseNumeric, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
CustomUnit="{Binding ElementName=UnitLabel, Path=Content}"
ValueChanged="NumericValue_Changed"
ValueFormat="Numeric" SmallChange="1" LargeChange="50" Minimum="0" Maximum="2000000" >
<telerik:RadNumericUpDown.NumberFormatInfo>
<globalization:NumberFormatInfo NumberDecimalDigits="0" />
</telerik:RadNumericUpDown.NumberFormatInfo>
</telerik:RadNumericUpDown>
Thanks