Hi,
SizeAll cursor(Four headed Sizing Cursor) only appears when we hover the mouse pointer on the sides of RadDiagram shapes .But expectation is , SizeAll Cursor has to enable before the mouse pointer touches the sides of shapes (approximately in 0.5 gap). we would like to show the cursor behavior as like powerPoint.
In powerpoint , we could see SizeAll cursor appears in some distance when we move the mouse pointer closer to the shapes. I have attached screenshot for reference .
We have also tried the solution which is given in previous
post, yet couldn’t find a solution to fix this issue. Can you kindly check and
let us know a appropriate solution.
Note: Need to implement a cursor behavior out of the RadDiagram
Shapes (Distance of 0.5 gap).
Regards,
Jeevitha S.
Hello,
I was wondering if there is any way to set up a TimeSpanPicker so that negative values can be provided?
I tried setting the "Minimum" option on the components to a negative value, but it seems this isn't respected and the minimum remains at 0.
Any help would be appreciated
Cheers
This seems like an easy one and I'm probably missing something obvious. If so, I apologize in advance. But I'm confused how to style the Busy indicator associated with the RadGridView. If I drop an independent RadGridView on my UI, I can used Blend to create a copy of the template and style it. But I can't figure out how to bind that with my GridView.
I included a screenshot that is a composite of 2 screenshots. The top is GridView.IsBusy = false. The bottom is GridView.IsBusy = true. The arrows include the Busy Indicator I'm trying to style.
I am trying to use the RadWindow.Alert() dialog however when I am trying to call it I get an "infinite loop". It seems the code never returns from the Win32 call. It can be seen clearly when the Alert() is executed and "debugger pause" is pressed in Visual Studio. The problem is quiet strange. I checked the demo on two additional computers. It was working with none. All three are using Windows 10. The issue also occurs for Confirm(). Please see the attached project (disguised as a .gif) as a very trivial example.
System information:
Visual Studio 2019, Project build with .NET v4.6
Windows 10
Telerik WPF v2019.3 (.NET v4.5) and Telerik WPF v2019.2 (.NET v4.5)
Hi,
I'm facing an issue with RadCalendar placed inside a RadDocking control. The DisplayDateChanged event is called whenever I dock or undock the calendar from the docking control. I've bound a data refresh command to the said event, but dock/undock causes the command to be fired without being needed.
Here is the Xaml:
<telerik:RadCalendar>
<behaviors:EventTrigger EventName="DisplayDateChanged">
<behaviors:InvokeCommandAction Command="{Binding Path=RefreshDataCommand}" CommandParameter="{Binding ElementName=ctrlCalendarView, Path=DisplayDate}">
</behaviors:InvokeCommandAction>
</telerik:RadCalendar>
RefreshDataCommand is coming from ViewModel.
What the issue is this, please look into the matter.
Thanks.
As far as I can tell, MultiColumnComboBox does not have a TextSearchMode or IsSynchronizedWithCurrentItem property like the RadComboBox. I'm looking to implement the Contains value of TextSearchMode.
I also want the MultiColumbComboBox to display the current item at startup. (using only one item at a time) Is there another way to do these things? Thanks.
Hello, I need to convert a RadDiagram to PDF/A-1a. I managed to convert it as an image, but that's not good enough. I need a vector format, because I need the text in the shapes, and my custom templates. Converting to SVG would be good enough, I can try to take it from there.
I saw your sample in http://docs.telerik.com/devtools/wpf/controls/raddiagram/features/html-support, but I need images, and I use custom templates.
I tested the ExportToPdf sample in the SDK, and it looks like a good start. I was thinking of adding image and custom shape support to it, but if it doesn't export to PDF/A-1a in the first place, it's a non starter.
Is there a way to export a RadDiagram to a PDF/A-1a document, even if images and custom shapes aren't supported ?
Hi Gyus,
we have the following scenario:
UI with a RadListBox and a RadScheduleView
The ListBox contains custom business objects
We want to drag and drop these business objects to the ScheduleView.
So we need the following:
A custom DragSourceBehaviour for the RadListBox (checked and works)
A custom DragDropBehaviour for the ScheduleView (checked and works)
So far so good...
But now the problems starts:
We need a custom appointment that implements the only interface IAppointment.
We don't need any further appointment interface like IExtendedAppointment or IObjectGenerator.
But we can't inherit from the Appointment base class, because we already inherit from our own base class.
If we implement the IAppointment interface, the drop on the schedule view doesn't work!
And unfortunately we don't understand why. And believe me, we have tried many variants.
We know all your samples from the sdk and from the forum (for example: WithDB and the example from 2012)
But all these examples don't just implement the IAppointment interface.
And when is the Drop operation completed?
If you drag and drop only inside the ScheduleView there is as DragAndDropCompleted event.
But, if you drop from another control, there is no completed event!
We have to write the changed data directly into the database. So we need to know when the drop processes are completed.
Can you please tell me the two drag and drop lifecycles (internal drag and drop as well as drop from another control)?
Thank you very much.