mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Password policy paging with proper sorting
This patch adds option to disable sorting when paging. It allowed to enable paging in password policy with order of items untouched (they are sorted on server side by priority). Also fixing issue when paging is disabled and command summary = null. It displayed 'null' in facet footer. https://fedorahosted.org/freeipa/ticket/2677
This commit is contained in:
parent
81007ff385
commit
edbcd28f44
@ -740,6 +740,7 @@ IPA.table_facet = function(spec, no_init) {
|
||||
that.pagination = spec.pagination === undefined ? true : spec.pagination;
|
||||
that.search_all_entries = spec.search_all_entries;
|
||||
that.search_all_attributes = spec.search_all_attributes;
|
||||
that.sort_enabled = spec.sort_enabled === undefined ? true : spec.sort_enabled;
|
||||
that.selectable = spec.selectable === undefined ? true : spec.selectable;
|
||||
that.select_changed = IPA.observer();
|
||||
|
||||
@ -833,7 +834,7 @@ IPA.table_facet = function(spec, no_init) {
|
||||
message = message.replace('${counter}', data.result.count);
|
||||
that.table.summary.text(message);
|
||||
} else {
|
||||
that.table.summary.text(data.result.summary);
|
||||
that.table.summary.text(data.result.summary || '');
|
||||
}
|
||||
};
|
||||
|
||||
@ -895,7 +896,9 @@ IPA.table_facet = function(spec, no_init) {
|
||||
that.table.summary.text(summary);
|
||||
|
||||
// sort map based on primary keys
|
||||
records_map = records_map.sort();
|
||||
if (that.sort_enabled) {
|
||||
records_map = records_map.sort();
|
||||
}
|
||||
|
||||
// trim map leaving the entries visible in the current page only
|
||||
records_map = records_map.slice(start-1, end);
|
||||
|
@ -33,7 +33,7 @@ IPA.pwpolicy.entity = function(spec) {
|
||||
that.entity_init();
|
||||
|
||||
that.builder.search_facet({
|
||||
pagination: false,
|
||||
sort_enabled: false,
|
||||
columns:['cn','cospriority']
|
||||
}).
|
||||
details_facet({
|
||||
|
Loading…
Reference in New Issue
Block a user