Oracle APEX 22.2
something to fix
Databaseguy, Oracle Apex Lover
- The CKeditor changed to a newer Version so i need to change the Dynamic Action to set the Richtexteditor Item Type to read only
//apex.item('P4040_RICHTEXT').getEditor().isReadOnly = true;
// Apex 22.2 - ckeditor change
apex.item('P4040_RICHTEXT').getEditor().enableReadOnlyMode( 'my-lock-id' );
https://ckeditor.com/docs/ckeditor5/latest/api/module_core_editor_editor-Editor.html#function-enableReadOnlyMode

