This commit is contained in:
2021-02-04 20:50:08 +00:00
parent 60d9a57417
commit bef2472ca0
2 changed files with 14 additions and 3 deletions

View File

@@ -13,9 +13,18 @@ LISTVIEW REPLACE CURRENT <----HERE not THERE ---v
TODO (now)
CLIENT
Translation keys
pore over the translation keys in the filter manager, datatable and filter control
there are definitely some extra ones in there
Fix error: "enumSelectionList" is not defined on the instance but referenced during render
prevents enum filtering
Meta filters are showing as a filter in the UI but not really there from user perspective
Need to not have user see or even think about meta filters
Not liking the default filter, could lead to confusion
User needs an easy way to definitively de-filter completely
Maybe show a "remove filter" button beside the selector when it's the default and it's filtered?
Test if can set a filter on a column that is also a meta filter column but using a regular column name like for example Usertype on user datalists
maybe I can make all the server data criteria columns meta and just duplicate the ones the user sees?
Implement filter buttons for mobile mode
Need filter drop down to select which columns to filter which triggers opening regular filter items

View File

@@ -745,6 +745,8 @@ export default {
} else {
//Save a copy of the server columns data for handling button clicks etc later
vm.serverColumns = res.columns;
//save a copy of the filter to show the filter symbol icons beside column headers
//and know that the return list *is* filtered
vm.serverFilter = res.filter;
//Make sure the translation keys are fetched
await fetchTranslatedHeaderNames(res.columns); //Note can use await here because it's wrapped inside an async function call, it will wait then resume next stuff below