Why does the PropertyGridDropDownListEditor automatically select the first option for me, is it possible to change this behavior?I want to keep things as they are when I have not chosen to.
public partial class RadForm1 : Telerik.WinControls.UI.RadForm { private class Info { [Editor(typeof(PropertyGridDropDownListEditor), typeof(BaseInputEditor))] public string Address { get; set; } } public RadForm1() { InitializeComponent(); } private void RadForm1_Load(object sender, EventArgs e) { radPropertyGrid1.SelectedObject = new Info { Address = "B" }; } private void radPropertyGrid1_EditorInitialized(object sender, PropertyGridItemEditorInitializedEventArgs e) { PropertyGridDropDownListEditor ddl = e.Editor as PropertyGridDropDownListEditor; if (ddl != null) { BaseDropDownListEditorElement el = ddl.EditorElement as BaseDropDownListEditorElement; el.DataSource = new List<string> { "A", "B", "C" }; el.Text = ((PropertyGridItem)e.Item).Value + ""; } } }

HI,
I am trying to create gridview like Example.png. I tried with project examplepng but nothing is coming to UI. Can you please tell me why? What needs to be done to fix it?
Note: Sorry i didn't know how to attach project iteself.
Regards
Harsha D

Hello,
is there a way to hide or replace the telerik logo on VirtualKeyboardForm?
Also how to hide the Home and Arrow Buttons to get a real simplified Layout ?
Thanks in advance.


Good afternoon,
I would like to change grid cursor movement behavior when pressing Enter key in the grid with grouped records. I need to move cursor only through the column cells without focusing a group header. Is it doable?
My grid settings are:
radGridView1.MasterTemplate.AutoExpandGroups = true;radGridView1.EnterKeyMode = RadGridViewEnterKeyMode.EnterMovesToNextRow;Hi Admin,
I would like to do command button put to center by vertical ( black square location). please see photo.
Thanks
Moe
Hi,
When I have a window in floating mode then keyboard tabbing will tab around the controls within the window, rolling around from the last control to the first control.
However, when the same window is docked and I tab, the focus 'escapes' from the window and enters another area.
Is there a way to keep the focus within a docked window on tab?

Hi.
Can different localizations be applied for different grids on a form? For example, one is English, one is German, the other is Spanish, etc.
