Hi,
I'm trying to retain the background color of a button on the click event to indicate it's the last button that was selected. Clicking another button should reset the first button then highlight the second button. All four backcolor assignments work fine, but on the reset side only the first backcolor property seems to work.
Dim theme As Theme = ThemeRepository.FindTheme(Me.myButton.ThemeName)
Dim repository As StyleRepository = theme.FindRepository("ButtonMouseDownFill")
Dim setting As PropertySetting
Dim bColor As Color, bColor2 As Color, bColor3 As Color, bColor4 As Color
setting = repository.FindSetting("BackColor") : bColor = CType(setting.EndValue, Color)
setting = repository.FindSetting("BackColor2") : bColor2 = CType(setting.EndValue, Color)
setting = repository.FindSetting("BackColor3") : bColor3 = CType(setting.EndValue, Color)
setting = repository.FindSetting("BackColor4") : bColor4 = CType(setting.EndValue, Color)
Select Case buttonName
Case Me.btnFirst.Name
Me.btnSecond.ButtonElement.ButtonFillElement.ResetValue(LightVisualElement.BackColorProperty, ValueResetFlags.Local)
Me.btnSecond.ButtonElement.ButtonFillElement.ResetValue(LightVisualElement.BackColor2Property, ValueResetFlags.Local) '<-- doesn't work
Me.btnSecond.ButtonElement.ButtonFillElement.ResetValue(LightVisualElement.BackColor3Property, ValueResetFlags.Local) '<-- doesn't work
Me.btnSecond.ButtonElement.ButtonFillElement.ResetValue(LightVisualElement.BackColor4Property, ValueResetFlags.Local) '<-- doesn't work
Me.btnFirst.ButtonElement.ButtonFillElement.BackColor = bColor
Me.btnFirst.ButtonElement.ButtonFillElement.BackColor2 = bColor2
Me.btnFirst.ButtonElement.ButtonFillElement.BackColor3 = bColor3
Me.btnFirst.ButtonElement.ButtonFillElement.BackColor4 = bColor4
Case Me.btnSecond.Name
Me.btnFirst.ButtonElement.ButtonFillElement.ResetValue(LightVisualElement.BackColorProperty, ValueResetFlags.Local)
Me.btnFirst.ButtonElement.ButtonFillElement.ResetValue(LightVisualElement.BackColor2Property, ValueResetFlags.Local) '<-- doesn't work
Me.btnFirst.ButtonElement.ButtonFillElement.ResetValue(LightVisualElement.BackColor3Property, ValueResetFlags.Local) '<-- doesn't work
Me.btnFirst.ButtonElement.ButtonFillElement.ResetValue(LightVisualElement.BackColor4Property, ValueResetFlags.Local) '<-- doesn't work
Me.btnSecond.ButtonElement.ButtonFillElement.BackColor = bColor
Me.btnSecond.ButtonElement.ButtonFillElement.BackColor2 = bColor2
Me.btnSecond.ButtonElement.ButtonFillElement.BackColor3 = bColor3
Me.btnSecond.ButtonElement.ButtonFillElement.BackColor4 = bColor4
End Select
Hello
I am working on windows form application with c#.
I have used telerik radgrid on the form.
Need a checkbox in the radgrid cell depending on the value of the cell.
e.g. If the value in the cell is true or false then instead of showing true or false in the cell need to checkbox,
if the value in the cell is date or datetime then datetimepicker should display in the cell.
Here is the screenshot describing my problem.

I want to rewrite the close event of radRibbonBar to help me achieve some other functions, but I can’t find the option of close event in the event area of radRibbonBar. I try to double-click the close event button of radRibbonBar, but it doesn’t work. I would like to ask the closing of this control. According to how to set from the event, or other ways to achieve the solution, thank you.
Best regards,
Kevin
When I add a new RadForm to a project, the form class name has "_" & the language appended to the end, like this;
public partial class RadForm1_cs
Public Class RadForm1_vb
Is this Telerik adding "_cs" or "_vb" to the class name? If so, can this feature be disabled without rolling back the control library version I am using?
Thanks,

Is there any way to invoke the 'Find replace' dialog from within code? I get that all of the methods which do the finding and replacing are available in the API, but I don't really want to re-implement your UI.
Associated question - is it possible to re-use individual menu items from within your RadSpreadsheetRibbonBar? So just copying your 'find' menu item?
Problem is that I only want otthe user to have the 'find' option under specific circumstances.
Thanks

I know how to sort column chooser for RadGridview:
e.ColumnChooser.SortOrder = RadSortOrder.Ascending
is there a way to sort Field Chooser for RadPivotGrid too?

I have a chart where data on the X axis is Time based, and on the Y axis is speed based, what is the best way of being able to scale the Speed (Y Axis) to show different units eg kmh, mph, m/s.
Is there a Y axis data scaling property I could set?
Cheers
Toby

Hai,
How to add icon or image on right side of the raddropdowlist ?
I am dynamically added dropdowlist via code and i need to add icon on right side of the control (inside the control) ,In textbox i can add, like this i want to add icon, here i attach screenshot.
Thanks and Regards
Aravind

Hi,
I try to set tooltip for textbox which is disabled , it not showing tooltip, but if the textbox in enabled it showing, Is there any way to show tooltip while it disabled ?
I tried following ways , but not working
in 2nd way i added Windows ToolTip control in that form and set the value for radtexbox, but not working.
RadTextBoxControl1.Enabled = False
'1 st way
RadTextBoxControl1.TextBoxElement.ToolTipText = "This is the tooltip text."
'2 nd way
ToolTip1.SetToolTip(RadTextBoxControl1, "This is the tooltip text.")In my aplication I create a graph with lots of scatter line series. Once created I would like to alter the format of one specific item in the legend to show this in bold fold (or possibly highlight in a different colour).
How is this possible to achieve?
