Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

display and insert image by url in Richtext editor Apex 23.1

Faezeh EbrahimiSep 10 2023

I've a sample table as this:

  CREATE TABLE tinyMCE_tbl ( ID NUMBER(4,0) GENERATED BY DEFAULT ON NULL AS    IDENTITY MINVALUE 1 MAXVALUE 90000 INCREMENT BY 1 START WITH 8000 NOCACHE,
   blog_text CLOB,
   CONSTRAINT "tinyMCE_tbl_ID" PRIMARY KEY ("ID")
   USING INDEX ENABLE
)

In my form , I use richtext editor for my CLOB Column . I want to make a custom button in toolbar that gives the url of image and display it in richtext ! How can i have this via js code ?

This post has been answered by Louis Moreaux on Sep 12 2023
Jump to Answer
Comments
Post Details
Added on Sep 10 2023
6 comments
647 views