ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: pquser on October 04, 2017, 09:48:22 pm
-
For the flyout menu on the right (Merge cells, Fix colums, Grand summary) the markup differs from your examples in comparison to your downloadable JS.
How come (see attachments)?
-
Please share jquery, jqueryui and pqgrid version and a jsfiddle if possible.
-
Thanks for you reply. JsFiddle would take some time if needed.
Theese are the versions and their loading order:
<!--#include virtual="../js/vendor/jquery-3.2.1.min.js" -->
<!--#include virtual="../js/vendor/jquery-migrate-1.4.1.min.js" -->
<!--#include virtual="../js/vendor/jquery-ui-1.12.1/jquery-ui.min.js" -->
<!--#include virtual="../js/vendor/jquery.ui.touch-punch.min.js" -->
<!--#include virtual="../vendor/paramquery-4.0.1/jsZip-2.5.0/jszip.min.js" -->
<!--#include virtual="../vendor/paramquery-4.0.1/pqgrid.dev.js" -->
<!--#include virtual="../vendor/paramquery-4.0.1/localize/pq-localize-de.min.js" -->
Thanks
-
Please use jQueryUI version 1.11.4
-
Thanks. Now the markup is right but there seems to be a css issue (see screenshots).
This is my relevant css:
@import "../vendor/../js/vendor/jquery-ui-1.11.4/themes/smoothness/jquery-ui.min.css";
@import "../vendor/paramquery-4.0.1/pqgrid.dev.css";
@import "../vendor/paramquery-4.0.1/themes/office/pqgrid.min.css";
Seems I need to make some change to it, do I?
-
pqgrid.ui.css ( to be added after pqgrid.css ) seems to be missing from the list.
-
Have it now like so:
@import "../vendor/../js/vendor/jquery-ui-1.11.4/themes/smoothness/jquery-ui.min.css";
@import "../vendor/paramquery-4.0.1/pqgrid.min.css";
@import "../vendor/paramquery-4.0.1/pqgrid.ui.min.css";
@import "../vendor/paramquery-4.0.1/themes/office/pqgrid.min.css";
Its the same order as in the fiddles you post but it still looks the same. Even with my custom css removed.
-
Please share a jsfiddle or a sample as an attachment.