Oracle Apex 5 - Footer Bar Like The One In App Builder
How can I create a footer bar/region in a Oracle Apex Universal Theme Application just like the one in the Oracle Apex App Builder? What is the html/css code needed to achieve that
Solution 1:
The Universal Theme page template includes a footer section:
    <footer class="t-Footer">
      #APP_VERSION##CUSTOMIZE##SCREEN_READER_TOGGLE##REGION_POSITION_05#
    </footer>
It looks something like this:
One solution is therefore to create a region in Region Position 5, and this will be displayed after the other items in the footer.
You could also modify the template HTML to remove any/all of the existing footer info and add your own. You would probably want to use references to page or application items - for example:
    <footer class="t-Footer">
      #SCREEN_READER_TOGGLE##REGION_POSITION_05#
      &APP_MY_FOOTER_INFO.
    </footer>

Post a Comment for "Oracle Apex 5 - Footer Bar Like The One In App Builder"