Oracle Apex - How to Display Add, Remove, Delete buttons on the Cards-Using Classic Report

Step - 1: Create blank page : Step - 2:Create classic report region : Region Name = demo_classicreport Sample SQL query: Select 'name:' || ' ' || product_name || '<br> quantity:' || ' ' || product_avail AS card_text, filename, mimetype, image_last_update, product_image, sys.dbms_lob.getlength(product_image) AS card_title, product_id,---my table primary key list_price, apex_util.prepare_url('#') AS card_link, '<div data-id=' || PRODUCT_ID || '> <button class="t-button t-button--nolabel t-button--icon trash-me " id="fav_' || PRODUCT_ID || '" type="button"> <span class="t-icon fa fa-trash" aria-hidden="true"></span> </button> <button class="t-button t-button--nolabel t-button--icon add-favorite " id="fav_' || PRODUCT_ID || '" ...