summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/widget.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-02-11 12:56:35 +0100
committerPetr Vobornik <pvoborni@redhat.com>2013-04-10 09:24:46 +0200
commit7e088a83782de9204af0a5bc120b4c97daae2c72 (patch)
tree402b0e1bbcf4874b525b3e9e0d7bd0173d138b00 /install/ui/src/freeipa/widget.js
parentba76a9c431600ba36194242fdfac982306d55192 (diff)
downloadfreeipa-7e088a83782de9204af0a5bc120b4c97daae2c72.tar.gz
freeipa-7e088a83782de9204af0a5bc120b4c97daae2c72.tar.xz
freeipa-7e088a83782de9204af0a5bc120b4c97daae2c72.zip
Global trust config page
https://fedorahosted.org/freeipa/ticket/3333
Diffstat (limited to 'install/ui/src/freeipa/widget.js')
-rw-r--r--install/ui/src/freeipa/widget.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/widget.js b/install/ui/src/freeipa/widget.js
index 44b8611a3..17d9b8b77 100644
--- a/install/ui/src/freeipa/widget.js
+++ b/install/ui/src/freeipa/widget.js
@@ -2734,12 +2734,14 @@ IPA.entity_select_widget = function(spec) {
that.other_field = spec.other_field;
that.options = spec.options || [];
+ that.filter_options = spec.filter_options || {};
that.create_search_command = function(filter) {
return IPA.command({
entity: that.other_entity.name,
method: 'find',
- args: [filter]
+ args: [filter],
+ options: that.filter_options
});
};
@@ -2773,6 +2775,8 @@ IPA.entity_select_widget = function(spec) {
if (that.on_search_success) that.on_search_success.call(this, data, text_status, xhr);
};
+ that.entity_select_set_options = that.set_options;
+
return that;
};