I am working on adding items to a context menu. However, when too many items are added, they overflow onto the ckeditor area. To solve this issue, I want to implement a scroll bar for the context menu.
editor.addMenuItem(suggestionBoxItem,
{
id: Id,
label: menuLabel,
group: 'suggestionBoxGroup',
icon: null,
onClick: function () {
editor.setData('');
editor.insertHtml(this.labelText);
},
});