I am trying to override the background theme colour for a CommandBarToggleButton (in default visual state ie untoggled). Below is what I have (but not working) - help appreciated!
CommandBarToggleButton button = new ...
button.SetThemeValueOverride(Telerik.WinControls.Primitives.FillPrimitive.BackColorProperty, Color.LightGreen, "", typeof(Telerik.WinControls.Primitives.FillPrimitive));
button.SetThemeValueOverride(Telerik.WinControls.Primitives.FillPrimitive.GradientStyleProperty, GradientStyles.Solid, "", typeof(Telerik.WinControls.Primitives.FillPrimitive));

Hello,
I'm using Telerik version 2017 R2 for app.
I followed this guide to localize all texts as well as labels in Composite Filter (custom filter) dialog, please see my result below
Composite Filter Localization result
As you see:
1. The texts in GREEN rectangle are localized successfully by adding the prefix "FR_".
2. The texts in rectangle are not localized because I don't know exactly the Localized String Id to override the default text.
Please advice! Thanks a lot!
I need delete some links but i don't know how i can do it.
If i press the button of mouse, there are the delete option. But this, remove the child of node.

hello
After I paste it, there is a problem.
The problem is that the scrolls automatically advance.
Please refer to the attached gif file.

I have GridViewComboBixColum in a RadGridview, is there the posibility to change the width of the items that are displayed?, because the column is too short to allow see all the items that are contained in the DropDown.
Thanks in advance.

I used BindingList for data binding,
BindingList<Person> personList = new BindingList<Person>();radMultiColumnComboBox1.DataSource = personList;
RadMultiColumnComboBoxElement multiColumnComboElement = this.radMultiColumnComboBox1.MultiColumnComboBoxElement;
multiColumnComboElement.EditorControl.MasterTemplate.AutoGenerateColumns = false;
GridViewTextBoxColumn column = new GridViewTextBoxColumn();
column.HeaderText = "ID";
column.FieldName = "id";
column.Name = "colId";
multiColumnComboElement.Columns.Add(column);
column = new GridViewTextBoxColumn();
column.HeaderText = "Name";
column.FieldName = "name";
column.Name = "colName";
multiColumnComboElement.Columns.Add(column);
Let Person object have two properties, id and name. I set ValueMember to id and DisplayMember to name.
And I set the SelectedValue,
radMultiColumnComboBox1.SelectedValue = person.id;This is working correctly. But when person.id become null, SelectedValue is not null, instead it select first item of BindingList<Person>.
I can't understand why. Pls answer to me.


I don't see a null text property for a textbox menu item. I need to be able to label the textbox and the null text feature would be perfect for a tight situation like this.
Thanks!
