This commit is contained in:
2020-02-25 18:19:10 +00:00
parent 0668729181
commit 720aa45d57
2 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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