summaryrefslogtreecommitdiff
path: root/js/CommonFilters.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-17 19:34:54 +0300
committerAndrew Dolgov <[email protected]>2021-02-17 19:34:54 +0300
commitb16abc157ee584f4be80a537ee24ec9e5ff25496 (patch)
treeb09e841d5cc1be8b066ac831588d01792ea1ad01 /js/CommonFilters.js
parent92cb91e2e22282e3ad9da2f5312d7815720af6b6 (diff)
* App: rename hidden to hidden_tag
* search: use client dialog * add some form field helpers
Diffstat (limited to 'js/CommonFilters.js')
-rw-r--r--js/CommonFilters.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/CommonFilters.js b/js/CommonFilters.js
index 5afffafdc..e3629157b 100644
--- a/js/CommonFilters.js
+++ b/js/CommonFilters.js
@@ -45,7 +45,7 @@ const Filters = {
li.innerHTML = `<input dojoType='dijit.form.CheckBox' type='checkbox' onclick='Lists.onRowChecked(this)'>
<span onclick='App.dialogOf(this).editRule(this)'>${transport.responseText}</span>
- ${App.FormFields.hidden("rule[]", rule)}`;
+ ${App.FormFields.hidden_tag("rule[]", rule)}`;
dojo.parser.parse(li);
@@ -76,7 +76,7 @@ const Filters = {
li.innerHTML = `<input dojoType='dijit.form.CheckBox' type='checkbox' onclick='Lists.onRowChecked(this)'>
<span onclick='App.dialogOf(this).editAction(this)'>${transport.responseText}</span>
- ${App.FormFields.hidden("action[]", action)}`;
+ ${App.FormFields.hidden_tag("action[]", action)}`;
dojo.parser.parse(li);