Completed
Last Updated: 03 Aug 2015 10:57 by ADMIN
Ronny
Created on: 29 Jul 2015 17:26
Category: RichTextEditor
Type: Feature Request
1
IMPROVE. RichTextEditorRibbonBar - allow typing and auto complete in font drop down
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
2 comments
ADMIN
Stefan
Posted on: 30 Jul 2015 07:55
We will also consider making this the default behavior.
ADMIN
Stefan
Posted on: 30 Jul 2015 07:45
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;