This question is locked. New answers and comments are not allowed.
Hi:
I'm new to Telerik controls. Using the DataPicker control and finding that it opens behind the control following it, so I can't really select the date and ok button. Example xaml:
How to resolve and have picker date selectors above the WebView control?
I'm new to Telerik controls. Using the DataPicker control and finding that it opens behind the control following it, so I can't really select the date and ok button. Example xaml:
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="120,15,0,0" > <TextBlock Text="Week Ending:" Margin="0,5,0,5" VerticalAlignment="Top" Style="{StaticResource BodyTextStyle}" /> <Input:RadDatePicker Margin="15,0,0,0" MaxWidth="200" Value="{Binding Path=WeekEnding,Mode=TwoWay}" /> <Button Content="Get Report" VerticalAlignment="Top" Margin="15,0,15,0" Click="GetReportClicked" /> </StackPanel> <WebView Grid.Row="2" MinHeight="100" Margin="120,15,15,15" x:Name="webreport" Height="560"/>How to resolve and have picker date selectors above the WebView control?