Author Topic: bootstrap and jQuery and jQueryUI VERSION  (Read 2265 times)

kawa

  • Newbie
  • *
  • Posts: 2
    • View Profile
bootstrap and jQuery and jQueryUI VERSION
« on: May 25, 2020, 02:15:53 pm »
The version of pqGrid is v2.4.1.
The version of bootstrap3 is 3.3.1.
The version of jQuery is 1.8.3.
The version of jQuery UI is 1.9.2.
The button of jQueryUI is only class "ui-corner-all", but "ui-button", "ui-widget", "ui-state-default" and "ui-button-text-only" can also be used.
I want to Is it because of a conflict between bootstrap3 and jQueryUI versions?
Please tell me the optimum version.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: bootstrap and jQuery and jQueryUI VERSION
« Reply #1 on: May 26, 2020, 11:27:34 am »
There is a conflict between jQueryUI button & tooltip with bootstrap due to same plugin names. To avoid conflict and use jQueryUI button and toolbar, the following lines of js should be added immediately after boostrap js file is included.

Code: [Select]
$.fn.bootstrapBtn = $.fn.button.noConflict();
$.fn.bootstrapTooltip = $.fn.tooltip.noConflict();     

kawa

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: bootstrap and jQuery and jQueryUI VERSION
« Reply #2 on: May 27, 2020, 10:47:44 am »
Thank you for the reply!
Thanks for your Guidance.