Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Mobile NavBar - 6 items across

Bill CarlisleJul 27 2014

For those that may need this for APEX Mobile NavBar..

here is how I was able to get 6 menu items across thanks to Gary on Experts Exchange!

If you have another way.. please post it here

This is in the source area of a "PL/SQL Dynamic Region"

htp.p('<style>

.ui-grid-a li {

    clear: none !important;

    width: 16.6666% !important;

}

</style>');

htp.p('<div data-role="navbar">

<ul>

   <li><a href="f?p='||:APP_ID||':MENU:'||:SESSION||'::NO:MENU:::">M</a></li>

   <li><a href="f?p='||:APP_ID||':SEARCH:'||:SESSION||'::NO:SEARCH:::">S</a></li>

   <li><a href="f?p='||:APP_ID||':AREA:'||:SESSION||'::NO:AREA:::">A</a></li>

   <li><a href="f?p='||:APP_ID||':CATEGORY:'||:SESSION||'::NO:CATEGORY:::">C</a></li>

   <li><a href="f?p='||:APP_ID||':OUTCOME:'||:SESSION||'::NO:9:::">O</a></li>

   <li><a href="f?p='||:APP_ID||:G_ADD_OBJECT||'">+</a>

</li>

</ul>

</div><!-- /navbar -->');

Thanks, Bill

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 24 2014
Added on Jul 27 2014
0 comments
120 views