From 7c0c39581c567c2c5bd92f9396b6fd99a2b8a6f8 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Tue, 17 Jan 2012 15:50:49 -0600 Subject: Enabled paging on automount keys. The automount keys search facet has been modified to support paging. Since the automountkey-find command doesn't support --pkey-only option, the facet is configured such that during a refresh operation it will retrieve all entries (including the key and info attributes) and then display only the ones that are supposed to be visible in the current page. Ticket #2093 --- install/ui/automount.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'install/ui/automount.js') diff --git a/install/ui/automount.js b/install/ui/automount.js index 13d7bfa2..80f5e143 100644 --- a/install/ui/automount.js +++ b/install/ui/automount.js @@ -74,7 +74,7 @@ IPA.automount.map_entity = function(spec) { factory: IPA.automount.key_search_facet, facet_group: 'automountkey', nested_entity: 'automountkey', - pagination: false, + search_all_entries: true, label: IPA.metadata.objects.automountkey.label, name: 'keys', columns: [ @@ -237,9 +237,13 @@ IPA.automount_key_column = function(spec) { var that = IPA.column(spec); that.setup = function(container, record) { + container.empty(); + var key = record.automountkey; + if (key instanceof Array) key = key[0]; var info = record.automountinformation; + if (info instanceof Array) info = info[0]; $('', { href: '#'+key, -- cgit