foex-open-source / fos-ckeditor4

A Rich Text Editor for Oracle APEX based on CKEditor4.
MIT License
9 stars 5 forks source link

APEX 22.2 - CLOB Session state #3

Open unficyp opened 1 year ago

unficyp commented 1 year ago

Hi, thanks fpr the plugin - is this or will this be compatible with the new 22.2 CLOB Session state ? regards

unficyp commented 1 year ago

never mind, just found the "Session State Supports CLOB" checkbox in the plugins standard attributes :D

stefandobre commented 1 year ago

If only that was all ;)

In the PL/SQL Code, you'd also have to change:

apex_plugin_util.print_display_only
    ( p_item             => p_item
-   , p_display_value    => p_param.value
+   , p_display_value    => p_param.session_state_value
    , p_show_line_breaks => true
    , p_escape           => false
    , p_show_icon        => false
);

and

-apex_plugin_util.print_escaped_value(p_param.value);
+apex_plugin_util.print_escaped_value(p_param);

Goes without saying, updating the plug-in on your own is unsupported. Hope the FOS team will update soon.