mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
FIX broken URL builder when using MultiSelectFields as parameters
This commit is contained in:
parent
03869a7535
commit
a25d0432c4
@ -2,17 +2,32 @@
|
|||||||
* File: ReportAdmin.js
|
* File: ReportAdmin.js
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function($) {
|
(function ($) {
|
||||||
$.entwine('ss', function($){
|
$.entwine("ss", function ($) {
|
||||||
$('.ReportAdmin .cms-edit-form').entwine({
|
$(".ReportAdmin .cms-edit-form").entwine({
|
||||||
onsubmit: function(e) {
|
onsubmit: function (e) {
|
||||||
var url = $.path.parseUrl(document.location.href).hrefNoSearch,
|
let url = $.path.parseUrl(document.location.href).hrefNoSearch;
|
||||||
params = this.find(':input[name^=filters]').serializeArray();
|
let params = this.find(":input[name^=filters]").serializeArray();
|
||||||
params = $.grep(params, function(param) {return (param.value);}); // filter out empty
|
|
||||||
if(params) url = $.path.addSearchParams(url, $.param(params));
|
try {
|
||||||
$('.cms-container').loadPanel(url);
|
params = $.grep(params, function (param) {
|
||||||
return false;
|
// filter out empty
|
||||||
}
|
return param.value;
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
// convert params to a query string
|
||||||
|
params = $.param(params);
|
||||||
|
|
||||||
|
// append query string to url
|
||||||
|
url += "?" + params;
|
||||||
|
|
||||||
|
$(".cms-container").loadPanel(url);
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
Loading…
Reference in New Issue
Block a user