Hi Guys,
When i set the chartview, the RadLegend didn't show normally..
I have uploaded my solution.
Best wishes,
JIJIKO
Hello.
this is version 2020.1
I have a scheduler working nicely (lots of customizations...)
Now, I am trying to edit an appointment calling RadScheduleViewCommands.EditAppointment.Execute:
public void EditAppointmentWithDialog(AppointmentDTO appointmentData)
{
var appo = PersistenceLayer.FindAppointment(appointmentData.ID);
ScheduleView.scheduleView.CurrentDate = appo.AppointmentDate;
var newAppo = Appointments.FirstOrDefault(app => app.ID == appointmentData.ID);
ScheduleView.scheduleView.SelectedAppointment = newAppo;
RadScheduleViewCommands.EditAppointment.Execute(null, ScheduleView.scheduleView);
}void IEditableObject.BeginEdit is called, so everything is in place.
If I cancel the edit, everything goes fine.
If I just click Ok in the edit window, void IEditableObject.EndEdit is never called.
I get a null exception error and the program exits.
See the attached file for the exception log.
Thanks!
Hi,
I have a GridView bound to a DataTable. The DataTable contains a combinition of numeric and non numeric columns. Null is a valid value in the the numeric columns. How do I let the user clear an existing numeric value to null?
/Brian
Solved.
I was wondering how I can create a new Aggregation Function and add it to this list of existing Functions in "More Aggregation Options"
In this article I see that they managed to create the 'Sqrt Of Sum' function in WinForms
-> https://docs.telerik.com/devtools/winforms/controls/pivotgrid/custom-aggregation
I would like to know how I can be doing the same to add an Aggregation Function in Options in PivotGrid WPF:
Explanatory Image below:
Thank you!
Hi there,
I'm running into an issue with the RadMultiColumnComboBox where after opening up a context menu, the dropdown loses the ability to dismiss itself when you click away from the grid, despite KeepDropDownOpen still being false.
The easiest way to repro is by using the RadContextMenu and RadGridView MVVM SDK example, except with this modification to the grid at the bottom of Example.xaml:
<Grid>
<telerik:RadMultiColumnComboBox KeepDropDownOpen="False">
<telerik:RadMultiColumnComboBox.ItemsSourceProvider>
<telerik:GridViewItemsSourceProvider ItemsSource="{Binding Items}"/>
</telerik:RadMultiColumnComboBox.ItemsSourceProvider>
</telerik:RadMultiColumnComboBox>
</Grid>After opening the context menu inside the grid's header, the popup can't be closed by clicking in the main window and must be closed by clicking the dropdown button.
I've seen some very old threads regarding similar use cases and those coming back as unsupported but this felt like a natural enough extension of the example case that I wanted to see if this was a bug or not. If it's unsupported, are there any ideas for a workaround?
Thanks,
Matthew
I'm using Implicit Styles with the NoXaml dlls (Office_Black) theme to change the look of the RadMaskedDateTimeInput.
I'd like to know how to set the BorderBrush of the control when hovering the mouse.
Thank you
Hi, guys.
I bind style to BarSeries, here is the code.
<Style TargetType="{x:Type telerik:BarSeries}">
<Setter Property="ShowLabels" Value="True"/>
<Setter Property="TooltipTemplate">
<Setter.Value>
<DataTemplate>
<Border Background="{DynamicResource BrightColor}" Padding="6" TextElement.Foreground="White">
<StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="Y=" FontWeight="Bold" />
<TextBlock Text="{Binding YValue}" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock Text="X=" FontWeight="Bold" />
<TextBlock Text="{Binding XValue}" />
</StackPanel>
</StackPanel>
</Border>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
Hello, I am trying to use Telerik UI fot WPF for our new project.
I just tested your demo version in github (https://github.com/telerik/xaml-sdk)
Unfortunately I encountered some serious issues with the program.
First of all, UI components cracked when mouse left RadButton.
RadToggleButtons make this kinds of accidents also.
It looks like the size of components are dramatically changed with mouse event.
I attached the video capture of the issue and demo program we used.
My question is :
- why it happens?
- Can I avoid or prevent this issue? how?
