Daniele Grillo
Daniele Grillo

Reputation: 1023

CKEDITOR vertical scrollbar Xpages

I need to enable vertical scroolbar into my CKEDITOR classic RT control... So I have used this CSS

.cke_show_borders { overflow-y: scroll; // vertical scrollbar overflow-x: scroll; // horizontal scrollbar }

But don't work..

Anyone have suggest for me?

Upvotes: 0

Views: 1645

Answers (1)

oleq
oleq

Reputation: 15895

Use config.removePlugins (docs):

config.removePlugins = 'autogrow';

Alternatively, modify config.plugins (docs) to select only those that you really need.

Upvotes: 1

Related Questions