In my previous blogpost I showed how you can embed an Oracle JET component in your APEX application. Now it is time to make a plugin out of the wisdom we gained doing so. First of all a disclaimer. My intention is to make this plugin and the inner workings as simple as possible. So you can add a lot more functionality, checks etc and therefore add complexity. But this is intended to be as simple as possible. The plugin consists of three parts: a PL/SQL render function, a snippet of JavaScript and a PL/SQL ajax function. The render function is defined as : function render ( p_region in apex_plugin.t_region , p_plugin in apex_plugin.t_plugin , p_is_printer_friendly in boolean ) return apex_plugin.t_region_render_result is c_region_static_id constant varchar2(255) := apex_escap...