I am adding items in context menu. When too many items get added it comes on ckeditor. So i want to have scroll bar for context menu.
editor.addMenuItem(suggestionBoxItem,
{
id: Id,
label: menuLabel,
group: 'suggestionBoxGroup',
icon: null,
onClick: function () {
editor.setData('');
editor.insertHtml(this.labelText);
},
});