The header of the SW is visible but there nothing in the content area, bank white not even the no appointments text.
Attaching sample project and image
App.xaml:
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Themes/System.Windows.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.Input.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.Navigation.xaml"/>
<ResourceDictionary Source="/Themes/Telerik.Windows.Controls.ScheduleView.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
UC:
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" >Is there anything I am doing wrong?
Thank you.
Hi, I'm trying to set focus on a textbox in a grid with a 'New' button click. the button has style setter to enable the text box on click, but i cannot get the textbox to get focus. best i can get is the cursor frozen in the textbox, requiring user to hit tab or enter. All my searching is saying there's a bug that will be fixed - years ago. I'm running the current version 2021.R3
trying the focusmanager does nothing. Here is the code:
<UserControl x:Class="Arc2.App.Views.JobNoteVw"Hello.
I created a bar chart similar to the link below.
The chart is successful, but there is a problem with sorting in categories.
<telerik:RadCartesianChart>
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:LinearAxis/>
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:CategoricalAxis/>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.Series>
<telerik:BarSeries ItemsSource="{Binding ResultChart}"
CategoryBinding="Title"
ValueBinding="Value"
ShowLabels="True">
<telerik:BarSeries.DefaultVisualStyle>
<Style TargetType="Border">
<Setter Property="Background" Value="{Binding DataItem.Color}" />
</Style>
</telerik:BarSeries.DefaultVisualStyle>
</telerik:BarSeries>
</telerik:RadCartesianChart.Series>
</telerik:RadCartesianChart>
<telerik:GridView ItemSource="{Binding ResultChart}" />
As you can see, Category 0 is the first value, and you can see that it is below.
I want to reverse this.
Is there another way other than to sort the Itemsource binding values ​​in reverse?
I want to avoid sorting because the results are also displayed in the GridView.
Thanks.
Hello
I am showing a RadChartView which has a bar series.
I have varying data and sometimes logarithmic is better and sometimes linear axis is better.
How can I provide a button to dynamically switch between Linear Axis and Logartihmic Axis on the vertical axis?
I prefer using XAML and data binding in XAML. is this possible?
Hi,
I observed that when the tooltip disappears, I need to move out of control before I can see the tooltip again (also in your sample with England map you can see this effect). It is reasonable, but I have a control that display a histogram plot. I could move the mouse over different bar and I would like that the tooltip could show again.
Is there a way to reactivate tooltip without exit from control?
Thank you
Luigi
I have a RadGridView inside that 2 different column i have a cell template and a datatemplate in that i have the RichTextbox inside that paragraph inside that run and the text property binded on it.
Now i need to compare tow richtexbox text value. If any RichTextbox value is different it need to be highlighted inside thta text Box.
XAML
<RadGridView Grid.Row="1" x:Name="gfgvBrokenLinks" AutoGenerateColumns="False" ItemsSource="{Binding BrokenLinks}" IsReadOnly="True" AutoExpandGroups="False" RowLoaded="gfgvBrokenLinks_RowLoaded">
<telerik:GridViewDataColumn DataMemberBinding="{Binding Data1}" Header="Data1" IsGroupable="False">
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<RichTextBox x:Name="richTextBox2" MinWidth="100" IsReadOnly="True">
<FlowDocument >
<Paragraph>
<Run Text="{Binding Data1,Mode=OneWay}"></Run>
</Paragraph>
</FlowDocument>
</RichTextBox>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Data2}" Header="{my:LocString ResourceKey=HeaderData2}" IsGroupable="False" >
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<RichTextBox x:Name="richTextBox3" MinWidth="100" IsReadOnly="True" >
<FlowDocument >
<Paragraph>
<Run Text="{Binding Data2,Mode=OneWay}"></Run>
</Paragraph>
</FlowDocument>
</RichTextBox>
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
c#
Thanks In Advance
Hi,
I want to change the Time Button Style of RadDateTimePicker, like mouseover or pressed style.
But i cannot find it in tempalte.
Hello.
Inside the gridview is a hierarchical gridview.
I created a button of the column cell template in the hierarchical grid view.
How to bind this button and how to receive parameters?
Upload a simple example image and source.
<telerik:RadGridView x:Name="xMain" ItemsSource="{Binding Main}">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Name}"/>
<telerik:GridViewColumn Header="View" Width="80" HeaderTextAlignment="Center" TextAlignment="Center">
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<telerik:RadButton Content="MainButton"
Command="{Binding DataContext.OnClickCommand, RelativeSource={RelativeSource FindAncestor,AncestorType=telerik:RadGridView}}"
CommandParameter="{Binding}">
</telerik:RadButton>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>
<telerik:RadGridView.ChildTableDefinitions>
<telerik:GridViewTableDefinition>
<telerik:GridViewTableDefinition.Relation>
<telerik:PropertyRelation ParentPropertyName="Subs" />
</telerik:GridViewTableDefinition.Relation>
</telerik:GridViewTableDefinition>
</telerik:RadGridView.ChildTableDefinitions>
<telerik:RadGridView.HierarchyChildTemplate>
<DataTemplate>
<telerik:RadGridView x:Name="xSubs" ItemsSource="{Binding Subs}">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Name}"/>
<telerik:GridViewColumn Header="View" Width="80" HeaderTextAlignment="Center" TextAlignment="Center">
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<telerik:RadButton Content="SubButton"
Command="{Binding DataContext.OnClickCommand, RelativeSource={RelativeSource FindAncestor,AncestorType=telerik:RadGridView}}"
CommandParameter="{Binding}">
</telerik:RadButton>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
</DataTemplate>
</telerik:RadGridView.HierarchyChildTemplate>
</telerik:RadGridView>
It is bound to the same OnClickCommand and will receive an object to identify it.
(CommandParameter is the selecteditem that is bound to the GridView.)
MainButton working / SubButton not working
I also tried setting Mode=TemplatedParent of RelativeSource and other settings, but couldn't find a solution.