ParamQuery grid support forum

General Category => Help for ParamQuery Grid (free version) => Topic started by: kawa on May 25, 2020, 02:15:53 pm

Title: bootstrap and jQuery and jQueryUI VERSION
Post by: kawa 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.
Title: Re: bootstrap and jQuery and jQueryUI VERSION
Post by: paramvir 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();     
Title: Re: bootstrap and jQuery and jQueryUI VERSION
Post by: kawa on May 27, 2020, 10:47:44 am
Thank you for the reply!
Thanks for your Guidance.