The toolbars in CK editor should be disabled by default and on click of maximize, the toolbars should be enabled. Can anyone suggest what needs to be included in Config of CK editor?
Hi @Jeevitha V,
Greetings! This article might be helpful for you.https://www.outsystems.com/forums/discussion/13128/ckeditor-config/
Best Regards,
Ananya
Hi @Ananya Ghosal ,
Thanks for your reply. I need to give condition in CK editor Config like on click of maximize (full screen mode), the tool bars should be displayed. Otherwise, the tool bars except maximize should not be displayed.
For that, I need the keyword for "maximize" to give condition. For eg: if( maximize=true, "toolbar:['Maximize','-'],['cut','copy','paste','pasteText','-'],"toolbar:['Maximize','-']")
Does anyone have idea about this?
Hi @Jeevitha V ,
CK editor is bind to input widget, and input widget has Enable property (Which asks true or false value).
when we set that enable property to false, then ck editor's toolbar gets disabled and vice versa.
Input widget's Enable property works on CK editor.
Thanks,
Namara
I have a local Boolean variable which is used in the "Enabled" property of the input widget Text Area. Updating the value of the local variable in a client action is not enabling/disabling the CKEditor. Am I missing something?
I think ckeditor don't have config for you purpose.
You need to inspect to find class related to toolbar and Maximize and add custom css to your project to handle this.
Best regards!