I have a databound GridView with a GridViewComboBox column, among others. I would like the scroll arrow to be on the right, not left, but I can't figure out how to set this. Can you help me?
Regards, Jill-Connie Lorentsen
1 Answer, 1 is accepted
0
Stefan
Telerik team
answered on 31 Jan 2014, 02:30 PM
Hi Jill-Connie Lorentsen,
Thank you for writing.
To put the editor in RightToLeft mode you can use the CellEditorInitialized event:
RadDropDownListEditor editor = e.ActiveEditor as RadDropDownListEditor;
if (editor != null)
{
RadDropDownListEditorElement editorElement = editor.EditorElement as RadDropDownListEditorElement;
editorElement.RightToLeft = true;
}
}
I hope that you find this information useful. Should you have any other questions, do not hesitate to contact us.
Regards,
Stefan
Telerik
TRY TELERIK'S NEWEST PRODUCT - APPLICATION ANALYTICS for WINFORMS.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely. Sign up for Free application insights >>