use a window.location.assign instead of creating a popup to export
This commit is contained in:
parent
683e8716f2
commit
37779ff51d
|
@ -81,7 +81,7 @@ function submitToEvents( element ) {
|
||||||
|
|
||||||
function submitToExport(element) {
|
function submitToExport(element) {
|
||||||
var form = element.form;
|
var form = element.form;
|
||||||
createPopup('?view=export&filter='+$j(form).serialize(), 'zmExport', 'export' );
|
window.location.assign('?view=export&filter='+$j(form).serialize());
|
||||||
//createPopup('?view=export&filter_id='+form.elements['Id'].value, 'zmExport', 'export' );
|
//createPopup('?view=export&filter_id='+form.elements['Id'].value, 'zmExport', 'export' );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue