Windows8TouchTheme doesn't show any noticeable change in the control if you disable or enable the control only that the clearcommand x will actually highlight.  I tried another theme and well they work.  Windows8TouchTheme seems sort of broken with MaskedInputNumeric.  This wasn't the case with the previous version of the assembly,  presently using 1204.45
   <telerik:RadGridView Name="radGridView"  VerticalAlignment="Top" AutoGenerateColumns="False" Grid.Row="2" ValidatesOnDataErrors="None" IsReadOnly="True" ShowColumnSortIndexes="True" CanUserFreezeColumns="False" ItemsSource="{Binding PagedSource, ElementName=radDataPager}" >                <telerik:RadGridView.Columns><br>                    <telerik:GridViewColumn Header="Edit"><br>                        <telerik:GridViewColumn.CellTemplate><br>                            <DataTemplate><br>                                <Button Content="Edit" Style="{StaticResource HyperLinkButtonStyle}"<br>                                            Click="EditButton_Click" /><br>                            </DataTemplate><br>                        </telerik:GridViewColumn.CellTemplate><br>                    </telerik:GridViewColumn><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding Organization}" Header="Organization"/><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding VisitDate, StringFormat=d}" Header="Visit Date"/><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding Location}" Header="Location"/><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding Address}" Header="Address"/><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding ContactPersonName}" Header="Contact Name"/><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding ContactPersonEmail}" Header="Contact E-mail"/><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding ContactMobileNumberConcatenate}" Header="Contact Mobile Number"/><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding ContactHomeNumberConcatenate}" Header="Contact Home Number"/><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding ContactOfficeNumberConcatenate}" Header="Contact Office Number"/><br>                    <telerik:GridViewDataColumn DataMemberBinding="{Binding ContactFaxNumberConcatenate}" Header="Contact Fax Number"/><br>                </telerik:RadGridView.Columns><br>            </telerik:RadGridView><Window x:Class="MainWindow"        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"         Title="MainWindow" Height="350" Width="525">    <Grid>        <Grid.RowDefinitions>            <RowDefinition Height="*"/>            <RowDefinition Height="*"/>        </Grid.RowDefinitions>                 <StackPanel Grid.Row="0"  Height="Auto" HorizontalAlignment="Stretch" Name="StackPanel1" VerticalAlignment="Stretch" Width="Auto">            <telerik:RadComboBox Name="Combo1" Text="One"                                 Margin="2" IsEditable="True"                                 GotFocus="RadComboBox_GotFocus"                                 LostFocus="RadComboBox_LostFocus">                <telerik:RadComboBox.Items>                    <telerik:RadComboBoxItem>One</telerik:RadComboBoxItem>                    <telerik:RadComboBoxItem>Two</telerik:RadComboBoxItem>                    <telerik:RadComboBoxItem>Three</telerik:RadComboBoxItem>                    <telerik:RadComboBoxItem>Four</telerik:RadComboBoxItem>                </telerik:RadComboBox.Items>            </telerik:RadComboBox>            <telerik:RadComboBox Name="Combo2" Text="Six"                                 Margin="2" IsEditable="True"                                 GotFocus="RadComboBox_GotFocus"                                 LostFocus="RadComboBox_LostFocus">                <telerik:RadComboBox.Items>                    <telerik:RadComboBoxItem>Five</telerik:RadComboBoxItem>                    <telerik:RadComboBoxItem>Six</telerik:RadComboBoxItem>                    <telerik:RadComboBoxItem>Seven</telerik:RadComboBoxItem>                    <telerik:RadComboBoxItem>Eight</telerik:RadComboBoxItem>                </telerik:RadComboBox.Items>            </telerik:RadComboBox>            <telerik:RadComboBox Name="Combo3" Text="Eleven"                                 Margin="2" IsEditable="True"                                 GotFocus="RadComboBox_GotFocus"                                 LostFocus="RadComboBox_LostFocus">                <telerik:RadComboBox.Items>                    <telerik:RadComboBoxItem>Nine</telerik:RadComboBoxItem>                    <telerik:RadComboBoxItem>Ten</telerik:RadComboBoxItem>                    <telerik:RadComboBoxItem>Eleven</telerik:RadComboBoxItem>                    <telerik:RadComboBoxItem>Twelve</telerik:RadComboBoxItem>                </telerik:RadComboBox.Items>            </telerik:RadComboBox>        </StackPanel>                 <ListBox Grid.Row="1" Height="Auto" HorizontalAlignment="Stretch" Name="EventList" VerticalAlignment="Stretch" Width="Auto" />    </Grid></Window>Imports Telerik.Windows.ControlsClass MainWindow    Private Sub RadComboBox_GotFocus(sender As System.Object, e As System.Windows.RoutedEventArgs)        Dim cbo = CType(sender, RadComboBox)        AddEventToList(cbo.Name, "GotFocus")    End Sub    Private Sub RadComboBox_LostFocus(sender As System.Object, e As System.Windows.RoutedEventArgs)        Dim cbo = CType(sender, RadComboBox)        AddEventToList(cbo.Name, "LostFocus")    End Sub    Private Sub AddEventToList(ByVal ctrlName As String, ByVal eventName As String)
        EventList.Items.Add(String.Format("{0} : {1} : {2}", EventList.Items.Count, ctrlName, eventName))        EventList.ScrollIntoView(EventList.Items(EventList.Items.Count - 1))    End SubEnd ClassI have a RadCartesianChart chart with a dynamic number of date/double series. So, I'm using a ChartSeriesProvider and programmatically generating the CategoricalSeriesDescriptor instances for the series. The x values for the data are of type DateTime, but the query results are actually grouped by the actual query already so that they are per year, month, etc. So, if the query was grouped by month, I would have a single point to plot where the Datetime value is on the first of the month. For most groupings, I can use the axis.LabelFormat property to provide an x axis label that is appropriate to the grouping. Ex. for month, I'd provide something like "MMM, yyyy". However, there is no format specifier for week number (of the year) or quarter number for me to generate labels like "Week 12, 2013". Is there a way for me to generate that kind of label? Maybe some other method besides using Axis.LabelFormat?
Thanks - Mitch
