diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-04-27 12:17:13 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-06-13 09:23:29 -0400 |
commit | cb70784e6fd864132d8e6f97e2a5c7d179ef5c0b (patch) | |
tree | 52c4fff321ec3d8eba462e6c294aeaf415c44458 /install/ui/search.js | |
parent | 61cfa343c36383a1a2e12663aec44e9c5692b854 (diff) | |
download | freeipa.git-cb70784e6fd864132d8e6f97e2a5c7d179ef5c0b.tar.gz freeipa.git-cb70784e6fd864132d8e6f97e2a5c7d179ef5c0b.tar.xz freeipa.git-cb70784e6fd864132d8e6f97e2a5c7d179ef5c0b.zip |
Entitlement status.
A new facet has been added to show entitlement status and download
the registration certificate.
Diffstat (limited to 'install/ui/search.js')
-rw-r--r-- | install/ui/search.js | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/install/ui/search.js b/install/ui/search.js index cb80467c..5fdaefd5 100644 --- a/install/ui/search.js +++ b/install/ui/search.js @@ -35,6 +35,7 @@ IPA.search_facet = function(spec) { var that = IPA.table_facet(spec); that.search_all = spec.search_all || false; + that.selectable = spec.selectable; function get_values() { return that.table.get_selected_values(); @@ -77,7 +78,8 @@ IPA.search_facet = function(spec) { label: IPA.metadata.objects[entity.name].label, entity_name: entity.name, search_all: that.search_all, - scrollable: true + scrollable: true, + selectable: that.selectable }); var columns = that.columns.values; @@ -175,11 +177,12 @@ IPA.search_facet = function(spec) { var values = that.table.get_selected_values(); - if (values.length === 0) { - that.remove_button.addClass('input_link_disabled'); - - } else { - that.remove_button.removeClass('input_link_disabled'); + if (that.remove_button) { + if (values.length === 0) { + that.remove_button.addClass('input_link_disabled'); + } else { + that.remove_button.removeClass('input_link_disabled'); + } } }; @@ -269,6 +272,16 @@ IPA.search_facet = function(spec) { IPA.nav.push_state(state); }; + that.load = function(result) { + + that.table.empty(); + + for (var i = 0; i<result.length; i++) { + var record = that.table.get_record(result[i], 0); + that.table.add_record(record); + } + }; + that.refresh = function() { that.search_refresh(that.entity); }; @@ -279,13 +292,7 @@ IPA.search_facet = function(spec) { function on_success(data, text_status, xhr) { - that.table.empty(); - - var result = data.result.result; - for (var i = 0; i<result.length; i++) { - var record = that.table.get_record(result[i], 0); - that.table.add_record(record); - } + that.load(data.result.result); if (data.result.truncated) { var message = IPA.messages.search.truncated; |