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 ?