ParamQuery grid support forum
General Category => Bug Report => Topic started by: vsa on January 19, 2021, 10:22:34 pm
-
Hello,
Here are two jsfiddle links that show that jQuery UI Dialog buttons are not shown if pqgrid.min.js is included.
Please, click on "showInterfaceSettings" to see dialog.
https://jsfiddle.net/bs9n2qgL/ (https://jsfiddle.net/bs9n2qgL/)
(http://giraglia.ovh/other/jquery-ui-with-pqgrid-no-buttons.PNG)
https://jsfiddle.net/gfpvz1tL/ (https://jsfiddle.net/gfpvz1tL/)
(http://giraglia.ovh/other/jquery-ui-no-pqgrid-with-buttons.PNG)
Thank you in advance
-
Thanks for sharing the issue.
Current workaround for this issue is to use array format for buttons option.
buttons: [{
text: "Apply",
click: function() {
saveInterfaceSettings();
}
},
{
text: 'Cancel',
click: function() {
$( this ).dialog( "close" );
}
}
]
https://jsfiddle.net/y0pvenb4/