Card View Report in Oracle Apex

 


If you want this. then flowing the steps

Step 1 : Create classic Report (as like)

select ROWID,

  dbms_lob.getlength("IMAGE") CARD_TITLE,

  ANIMAL_TYPE CARD_TEXT,

  'Buy Price :  '||to_char(BUYING_price,'99,99,999.99') CARD_SUBTEXT

from  "ANIMALS"

WHERE STATUS='I';


Step 2 : Go to Attributes

Template --> Cards


Step 3 : Go to Columns level and select "CARD_TITLE"

Type --> Display Image

Table Name --> Animals

Blob Column --> Image

Primary Key --> ROWID


Step 3 : Inline (css copy to paste)

.t-Card-title img {

    width: 200px;

    height: 200px;

    align:center;

}


Step 4 : if you want to see four Image in card view 

Attributes --> go to Template Options and select Layout : 4 Columns


Post a Comment

Previous Post Next Post