From 720aa45d57a5f41186d23d2ada62dd9005f3694d Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 25 Feb 2020 18:19:10 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 6 +++--- ayanova/src/components/gz-data-table.vue | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index b950079b..6dc0ebd6 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -167,7 +167,7 @@ TODO: DataFilter how to distinguish between filtering on specific ID value or on - Might need to add a filter on ID type of thing maybe? - This works in v7 by providing a list of items that were displayed for that object in the list so that they can select the particular one and that item's ID is then saved for that column - For v8 since we know the type of the column we could in theory fetch a list of all items of that type on demand for user to select from if they choose to go that way. - - This way the item doesn't need to be in teh source grid like in v7 so it's actually better!!! + - This way the item doesn't need to be in the source grid like in v7 so it's actually better!!! Example: @@ -210,7 +210,7 @@ TAGS - At server if equality compare value is an array of strings then it's assu - in v7 users can set more than one condition per column by selecting "custom" so we need to support that - Maybe a row of all columns then each one has a expandable list of conditions under it for setting multi filters? - Like a card with top part all static info, then filters below as a collection that can expand the card vertically with ADD and REMOVE buttons for each one - - In v7 user can set AND or OR query for custom more than one condition (but it applies to teh whole group, not both and and or individually) + - In v7 user can set AND or OR query for custom more than one condition (but it applies to the whole group, not both and and or individually) - Sort - View order is sort and filter order @@ -382,7 +382,7 @@ TODO: ANY TIME - SIDE v7 STUFF DataDump plugin needs an explanation of what it i TODO: VET translations - There are still a large number of non translated lt's in the non english stock languages (i.e. "More...") - Make it easy to dump the local storage locale text for vetting the translations - - Login as each language, exercise the entire UI and then dump all the locale text that was fetched from teh server and look for non english words + - Login as each language, exercise the entire UI and then dump all the locale text that was fetched from the server and look for non english words TODO: REPORT LIST diff --git a/ayanova/src/components/gz-data-table.vue b/ayanova/src/components/gz-data-table.vue index b2047766..7487b7bd 100644 --- a/ayanova/src/components/gz-data-table.vue +++ b/ayanova/src/components/gz-data-table.vue @@ -382,7 +382,7 @@ export default { listViewChanged: function() { var vm = this; - //If listview had changed it can only have changed *away* from the unsaved filter item if it's present so just remove teh unsaved filter item if it exists + //If listview had changed it can only have changed *away* from the unsaved filter item if it's present so just remove the unsaved filter item if it exists //DANGER DANGER WARNING: if using lodash to remove item it might mess with vue reactivity //this example does remove from the array and does update a plain mustache rendition of it on the page but doesn't update the select itself