Would it be possible to make the Font Section dropdown editable on the RabRibbonBar? i.e. It would be nice to be able to enter the character "s" for example and see all fonts starting with S. Currently you must scroll. Thanks, Ronny
We will also consider making this the default behavior.
Yes it is possible, you can just access the responsible drop down list element and set the needed properties: RibbonTab homeTab = (RibbonTab)richTextEditorRibbonBar1.CommandTabs[0]; RadRibbonBarGroup fontGroup = (RadRibbonBarGroup)homeTab.Items[1]; RadRibbonBarButtonGroup btnGroup = (RadRibbonBarButtonGroup)fontGroup.Items[0]; RadDropDownListElement fontDdl = (RadDropDownListElement)btnGroup.Items[0]; fontDdl.DropDownStyle = RadDropDownStyle.DropDown; fontDdl.AutoCompleteMode = AutoCompleteMode.SuggestAppend;