Oracle Apex - How to Display Image and Text Side by Side Using Cards

 



Step - 1 : Create Blank Page.



Step - 2 : Create Cards Region :

               Title - Cards 

               Type - Cards




Sample SQL Query:

          select product_id,
                    product_name,
                    filename,
                    mimetype,
                    image_last_update,
                    product_image,--blob column
                    price,
                    product_avail
          from demo_product_info


Step - 3 : Go To Cards Region  Attributes :
  
Follow Below steps:

               Primary Key  column 1 : PRODUCT_ID --primary key of my table
           
               In Title Section

               Step1 : Enable Advanced Formatting

               Step 2: HTML Expression : <span style="font-weight:&WEIGHT.;font-size:80%;padding-                
                                                                 bottom:50px;"><b>&PRODUCT_NAME.</b><br></span>
  

               In Subtitle Section

               Step1: Enable Advanced Formatting

               Step2:  HTML Expression : <span style="font-size:70%"><B>PRICE</b> : &PRICE.</span>



               Icon and Badge :   Icon Source - Image BLOB Column
             
                                               Image Column - PRODUCT_IMAGE--my blob column
                                       


Step - 4 : Save and Run the page:

Output :



Comments

Popular posts from this blog

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

Oracle APEX: How to Display Column Text Color in Interactive Grid with JavaScript