summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-18 00:01:24 +0400
committerAndrew Dolgov <[email protected]>2011-04-18 00:01:24 +0400
commit5593784a2c64a910425d2064575ee575721dad53 (patch)
tree95333edd031aec227c619b2dea7a26531ddd28b8 /functions.js
parent50aa64b3c4b1ef5a9b90e3f1a09b8e4c92140d16 (diff)
implement test button in filter dialogs
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 3b18b0072..ee92674eb 100644
--- a/functions.js
+++ b/functions.js
@@ -969,6 +969,24 @@ function quickAddFilter() {
id: "filterEditDlg",
title: __("Create Filter"),
style: "width: 600px",
+ test: function() {
+ if (this.validate()) {
+
+ if (dijit.byId("filterTestDlg"))
+ dijit.byId("filterTestDlg").destroyRecursive();
+
+ tdialog = new dijit.Dialog({
+ id: "filterTestDlg",
+ title: __("Filter Test Results"),
+ style: "width: 600px",
+ href: "backend.php?savemode=test&" +
+ dojo.objectToQuery(dialog.attr('value')),
+ });
+
+ tdialog.show();
+
+ }
+ },
execute: function() {
if (this.validate()) {