Hi there,
Is there any way to select a row in RadGridView using an object as index?
Thank you and Regards!
Hello there,
I meet the following issue.. I've created a custom theme in Visual Style Builder and I am trying to apply it in runtime using the following line:
Telerik.WinControls.ThemeResolutionService.LoadPackageFile("C:/.../CustomTheme.tssp");
Telerik.WinControls.ThemeResolutionService.ApplicationThemeName = "CustomTheme";
The theme is being applied to most of the controls but not to all. I have solved this issue by subscribing to "Telerik.WinControls.ThemeResolutionService.ApplicationThemeChanged" event and there I reset manually the properties that are not being overridden by the theme.
But I guess that it's not necessary and I am doing something wrong.
I will give an example of my issue:
If I add a new RadButton to my Form and leave its Fill.BackColor to 'Transparent', then the theme is being applied properly in runtime. But if I change its BackColor from WinForms Designer, then the theme does not override its value and needs reset in ApplicationThemeChanged event with the method:
MyRadButton.ButtonElement.Fill.ResetValue(Telerik.WinControls.Primitives.FillPrimitive.BackColorProperty);
Any ideas?
Hello,
I need help.
I'm using a radBulletGraph.
Set BackColor1 and 2 of bulletGraphQualitativeBar1 to different colors, BrushType is gradient, GradientStyle is linear.
Gradient is from top to bottom, I want left to right, or right to left. What can I do?
Kind regards
Hello,
how can I hide the "DragButton" or however it was called, on the left?
Kind regards
Hello,
I am looking to set up my TreeView in such a way as to have the previously-selected node collapse when a different node at the same level is chosen. For example, if I had a tree like this:
RootNode
|_ NodeA
| |_Node1
| |_Node2
|_NodeB
| |_Node3
| |_Node4
If I choose NodeA, NodeB (if expanded) would close, and NodeA would expand. I want to do this so that the end user doesn't get lost with many nodes expanded. Any ideas?
Thanks,
Matt
So I have a DataTable object that has data with rows & columns. My question is do I convert that into a RadGridView and then try to export it to Excel? Is that the easiest way to do it? Or is there another way I can export the DataTable object without having to convert it to a RadGridView? If so, how can I go about doing that? Is it using RadSpreadStreamProcessing library?