I downloaded the current for your App and was trying to install. My system has Visual Studio 2015, 2017 and 2019 installed but when i check for the Visual Studio integration i do not get the option for 2019 as it is grey out. What causes this ? Is there a fix for it or how can i manually install the 2019 extensions ?
I enclosed 2 screenshots which show the Visual Studio Version as well as the Install option for your Telerik UI for WinForms
I am applying a consistent theme to my app by doing this ThemeResolutionService.ApplicationThemeName = "Office2013Light";
But, since that happens at run time, my designer still shows a different theme. How can I change the default theme that's being used?
Hello,
I'm using a PivotGrid with nodes from a database. I want to hide some of the fields of the fieldControl and I use this code:
Private Sub RadPivotFieldList1_NodeFormatting(ByVal sender As Object, ByVal e As TreeNodeFormattingEventArgs)
If e.Node.Text = "IdAnalisis" Then
e.Node.Visible = False
End If
The problem is that when it shows the dialog, the IdAnalisis node is still there and when I press the FieldsControl window, then it disappears. I tried to use refresh and invalidate in different parts of the code, but always the same problem. Any solution?
Thank you,
Eduard
Hello team,
How to set select/focus borderline in the RadDropDownList?
for example,
if I press the tab button to focus on the RadButton that I can know the button is focused, but there is no focus borderline in the RadDropDownList. I have attached the image.
Kindly, check and share the fix details for set the focus borderline in RadDropDownList.
Notes: I'm using C# code.
Thanks.
Hello.
I design a function form as record finder in my Application. I want to use it instead of dropdownlist in a MultiColumnComboBox Column in a radgridview. Is it possible to do that?
Thanks
I looked at the document here: https://docs.telerik.com/devtools/winforms/controls/scheduler/importing-and-exporting-appointments/export-to-a-custom-file
However that's not really the question I have. How are appointments saved without data binding, to a file? The above example is how to save custom data to a file, but I'm trying to figure out how to save appointments that aren't custom. I'd like to be able to write them out as JSON or something like that, and allow them to be imported that way as well.
I was able to get the list of events, but when I attempted to serialize them using Newtonsofts JSON, it throws an error.
The error I get is:
Newtonsoft.Json.JsonSerializationException: 'Self referencing loop detected for property 'Scheduler' with type 'Telerik.WinControls.UI.RadScheduler'. Path 'CultureInfoProvider.SchedulerInputBehavior'.'
Here is the code I was using to iterate over the appointments and attempt to serialize each appointment:
Dim events As ISchedulerStorage(Of IEvent) = data.GetEventStorage()
For Each ev As IEvent In events
Dim jsonEvent As String = JsonConvert.SerializeObject(ev, Formatting.Indented)
Next
Is there an event that fires when the current time hits the appointment time?
Or should I be using the reminders and setting a time of 0?
If that is the case, is it possible to not render the reminder window at all?
In short, I want to use the scheduler to schedule appointments (events), and have an event fire when they are hit, but not show the reminder window at all. I want to do my own custom logic at that point.