From 80101a477c63b499f23b508c09b94bfad58d9dbe Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 19 Mar 2020 17:37:15 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 3 ++- ayanova/src/components/pick-list.vue | 24 ++++++++++++------------ 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 15dfd313..96282219 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -48,7 +48,8 @@ CURRENT TODOs @@@@@@@@@@@ ROADMAP STAGE 1 and 2: - +todo: consider adding a global setting that allows case *in*sensitive searches or vice versa for picklists + - Case is a pain in the ass on devices todo: make sure that the picklist control has a delay in it so it doesn't go search on every character typed - make some sane limits to it todo: stuff below go-over and make sure nothing missed diff --git a/ayanova/src/components/pick-list.vue b/ayanova/src/components/pick-list.vue index 98e2a157..833dc01c 100644 --- a/ayanova/src/components/pick-list.vue +++ b/ayanova/src/components/pick-list.vue @@ -7,7 +7,7 @@ label="lbl Widgets" v-model="selected" return-object - :items="sourceresults" + :items="searchResults" item-text="name" item-value="id" item-disabled="!active" @@ -16,11 +16,12 @@ :placeholder="lt('search hint here')" :no-data-text="lt('NoData')" :search-input.sync="searchEntry" + auto-select-first :multiple="multiple" - cache-items hide-no-data + no-filter > -