Hello,
I have a problem with the title of the views. In my case I have 5 views:
1 - dayview
2 - WeekView
3 - WorkWeekView
4 - MonthView
5 - TimeLineView
I noticed that when I switch to workWeekView, I get the title of dayview.
I could tell how to fix this?
Thanks!


StyleManager.ApplicationTheme = new MetroTheme();<telerik:RadTileView MaximizeMode="ZeroOrOne" RowHeight="200" ColumnWidth="250"> <telerik:RadTileViewItem Header="Berkeley Park"> <TextBlock>Test</TextBlock> </telerik:RadTileViewItem> <telerik:RadTileViewItem Header="Posh Park Developments"> <TextBlock Margin="10">Test</TextBlock> </telerik:RadTileViewItem> <telerik:RadTileViewItem Header="King Park"> <TextBlock Margin="10">Test</TextBlock> </telerik:RadTileViewItem> <telerik:RadTileViewItem Header="King Park"> <TextBlock Margin="10">Test</TextBlock> </telerik:RadTileViewItem> <telerik:RadTileViewItem Header="King Park"> <TextBlock Margin="10">Test</TextBlock> </telerik:RadTileViewItem> </telerik:RadTileView>
Hi guys,
how can I use the RadmaskedDateTimeInput scheme inside a Gridview Cell ?
I tried building my GridViewDataColum with
DataFormatString
="{} {0:dd.MM.yyyy}"
but there I have to type the periods, too.
I'd like to have the same behaviour as in the edit field.
I only want to type the numbers, as in:
telerik
:RadMaskedDateTimeInput Mask="dd.MM.yyyy"
best regards
Torsten

<chartView:PieSeries.SliceStyles> <Style TargetType="Path"> <Setter Property="Stroke" Value="Gray"/> <Setter Property="StrokeThickness" Value="1"/> <Setter Property="Fill" Value="{Binding Converter={StaticResource pieChartSliceToColorConverter}, ConverterParameter=0}"/> </Style> <Style TargetType="Path"> <Setter Property="Stroke" Value="Gray"/> <Setter Property="StrokeThickness" Value="1"/> <Setter Property="Fill" Value="{Binding Converter={StaticResource pieChartSliceToColorConverter}, ConverterParameter=1}"/> </Style><scheduleView:RadScheduleView.ViewDefinitions> <scheduleView:WeekViewDefinition VisibleDays="7" Title="Wochenansicht - " FirstDayOfWeek="Monday" TimerulerMajorTickStringFormat="{}{0:HH:mm tt}" MajorTickLength="1h" MinorTickLength="30min" MinTimeRulerExtent="1" DayStartTime="06:00" DayEndTime="20:00" ShowAllDayArea="True"/> </scheduleView:RadScheduleView.ViewDefinitions>Hello Team,
I am trying to FocusVisualStyle to WPF user controls but I am not able to see the effect. Below is the XAML i am using. Please suggest me any other alternative to change the Boarder thickness.
I need to change focus behavior of the control.
Thanks for your help and support.
Thanks & Regards
Rajesh Penki
<Window x:Class="TelerikIssueApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation">
<Grid>
<Grid.Resources>
<Style TargetType="telerik:RadDateTimePicker" x:Key="radDateTimePickerDefaulyStyleNoEnable">
<Setter Property="telerik:StyleManager.Theme" Value="Summer"></Setter>
<Setter Property="FontSize" Value="11" />
<Setter Property="FocusVisualStyle" Value="{DynamicResource AllControlsFocusVisual}"/>
</Style>
<Style TargetType="telerik:RadMaskedTextBox" x:Key="radRadMaskedTextBoxDefaulyStyleNoEnable">
<Setter Property="telerik:StyleManager.Theme" Value="Summer"></Setter>
<Setter Property="FontSize" Value="11" />
<Setter Property="FocusVisualStyle" Value="{DynamicResource AllControlsFocusVisual}"/>
</Style>
<Style x:Key="AllControlsFocusVisual">
<Setter Property="Control.Template">
<Setter.Value>
<ControlTemplate>
<Rectangle Stroke="DeepSkyBlue" StrokeThickness="3" Margin="0,0,0,0"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Grid.Resources>
<Grid.RowDefinitions>
<RowDefinition Height="30" ></RowDefinition>
<RowDefinition Height="30" ></RowDefinition>
<RowDefinition Height="30" ></RowDefinition>
</Grid.RowDefinitions>
<telerik:RadDatePicker Style="{StaticResource radDateTimePickerDefaulyStyleNoEnable}"
Width="180" Height="22" HorizontalAlignment="Left" HorizontalContentAlignment="Left" Grid.Row="0"/>
<telerik:RadMaskedTextBox Style="{StaticResource radRadMaskedTextBoxDefaulyStyleNoEnable}"
Width="180" Height="22" HorizontalAlignment="Left"
HorizontalContentAlignment="Left" Grid.Row="1"/>
</Grid>
</Window>