ParamQuery grid support forum
General Category => Help for ParamQuery Grid (free version) => Topic started 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.
-
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.
$.fn.bootstrapBtn = $.fn.button.noConflict();
$.fn.bootstrapTooltip = $.fn.tooltip.noConflict();
-
Thank you for the reply!
Thanks for your Guidance.