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!

integrating bootstrap libraries in apex

Gor_MahiaAug 18 2015 — edited Aug 25 2015

Hi,

I added bootstrap libraries to apex custom template so to use some features of bootstrap but now some jquery functionality as well as bootstrap functionalities seem not to work as expected like bootstrap datatable, menus, icons, buttons etc

i think its the order of references though ive tried to swap them round but no difference,

<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">  

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<script type="text/javascript" src="http://maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>

also tried the new set below,

  <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">

  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

  <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

any idea what could be the issue here or maybe due to Apex internal jquery library conflicting this new one if so what is the best way to run 2 jquery libraries concurrently because bootstrap has specific jquery version requirement?

regards

This post has been answered by Kiran Pawar on Aug 19 2015
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 22 2015
Added on Aug 18 2015
3 comments
3,293 views