mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
1625d126c2
It seems like filter params that are added to the url are added in a bad way Currently ?0[name]=filters[ContentReviewOwnerID]&0[value]=1 Expected: ?filters[ContentReviewOwnerID]=1
20 lines
531 B
JavaScript
20 lines
531 B
JavaScript
/**
|
|
* File: ReportAdmin.js
|
|
*/
|
|
|
|
(function($) {
|
|
$.entwine('ss', function($){
|
|
$('.ReportAdmin .cms-edit-form').entwine({
|
|
onsubmit: function(e) {
|
|
var url = $.path.parseUrl(document.location.href).hrefNoSearch,
|
|
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));
|
|
$('.cms-container').loadPanel(url);
|
|
return false;
|
|
}
|
|
});
|
|
|
|
});
|
|
})(jQuery);
|