From e5f5e6576d2f25861f6eddae10d64d5c56523fea Mon Sep 17 00:00:00 2001 From: PhilW Date: Mon, 21 Jan 2019 21:06:58 +0000 Subject: [PATCH] add some selection options to contacts list --- program/js/app.js | 9 +++++---- skins/elastic/templates/addressbook.html | 16 ++++++++++++++++ 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index adfa82549..41c37995e 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1116,16 +1116,17 @@ function rcube_webmail() case 'select-all': this.select_all_mode = props ? false : true; this.dummy_select = true; // prevent msg opening if there's only one msg on the list + var list = this.task == 'addressbook' ? 'contact_list' : 'message_list'; if (props == 'invert') - this.message_list.invert_selection(); + this[list].invert_selection(); else - this.message_list.select_all(props == 'page' ? '' : props); + this[list].select_all(props == 'page' ? '' : props); this.dummy_select = null; break; case 'select-none': this.select_all_mode = false; - this.message_list.clear_selection(); + this[this.task == 'addressbook' ? 'contact_list' : 'message_list'].clear_selection(); break; case 'expand-all': @@ -9216,7 +9217,7 @@ function rcube_webmail() var list = this.contact_list, uid = this.env.list_uid; - this.enable_command('export', (list && list.rowcount > 0)); + this.enable_command('export', 'select-all', 'select-none', (list && list.rowcount > 0)); if (response.action == 'list' || response.action == 'search') { this.enable_command('search-create', this.env.source == ''); diff --git a/skins/elastic/templates/addressbook.html b/skins/elastic/templates/addressbook.html index 197fad65e..558a9446e 100644 --- a/skins/elastic/templates/addressbook.html +++ b/skins/elastic/templates/addressbook.html @@ -24,6 +24,10 @@ + +
+

+ +
+