Oracle Apex 5.0 - Display static image

后端 未结 3 1969
闹比i
闹比i 2021-01-03 08:00

I\'m new to Oracle Apex and I\'m really struggling how to display static images on a desktop application.

I uploaded an image at Shared Components -> Files -> Static

相关标签:
3条回答
  • 2021-01-03 08:27

    use

    <img src="#APP_IMAGES#flow.png" alt="image"> 

    in label. Remember to upload the image in shared components

    0 讨论(0)
  • 2021-01-03 08:28

    You still need to use html. Try:

    <img src="#APP_IMAGES#test.jpg" alt="image">
    
    0 讨论(0)
  • 2021-01-03 08:51

    There are several options to display an image. But if you want to use an item to display one, you can use an item of the type "Display Image".
    In the "Settings" for this item you get a few options on where the image should come from:

    • Image URL stored in Page Item Value
    • BLOB Column specified in Item Source
    • BLOB Column returned by SQL statement

    You'd use the BLOB columns when working with images coming from the database, but here you can just use the "Image URL" option.

    All you need to do then is to specify the URL in the item's source.

    Obviously there are other methods too. You could indeed just generate the HTML yourself, for example.

    0 讨论(0)
提交回复
热议问题