diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 09a5e727..20b29f60 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -13,15 +13,10 @@ LISTVIEW REPLACE CURRENT <----HERE not THERE ---v TODO (now) CLIENT - - Translation keys - - + Translation keys pore over the translation keys in the filter manager, datatable and filter control there are definitely some extra ones in there - "ListView" still referenced throughout data-table, possibly passed to selection dependent code (reports, bulk ops?) - Implement filter buttons for mobile mode Need filter drop down to select which columns to filter which triggers opening regular filter items Needs also to show a filter beside "headings" which are filtered so it's known diff --git a/ayanova/src/components/data-table-filter-control.vue b/ayanova/src/components/data-table-filter-control.vue index 583f3bd7..b716e8aa 100644 --- a/ayanova/src/components/data-table-filter-control.vue +++ b/ayanova/src/components/data-table-filter-control.vue @@ -591,10 +591,6 @@ async function fetchActiveFilter(vm) { // async function fetchTranslatedText(vm) { await window.$gz.translation.cacheTranslations([ - "GridFilterName", - "Include", - "AnyUser", - "Sort", "Filter", "GridFilterDialogAndRadioText", "GridFilterDialogOrRadioText", @@ -647,8 +643,7 @@ async function fetchTranslatedText(vm) { "DateRangePreviousYearLastMonth", "DateRangePreviousYearNextMonth", "True", - "False", - "Name" + "False" ]); } diff --git a/ayanova/src/components/data-table.vue b/ayanova/src/components/data-table.vue index 740395a5..3b7d9145 100644 --- a/ayanova/src/components/data-table.vue +++ b/ayanova/src/components/data-table.vue @@ -376,7 +376,7 @@ ///////////////////////////////////////////////////////////////////////////////////////////////////////////// /* Xeslint-disable */ //////////////////////////////////////////////////////////////////////////////////////////////////////////// -import relativeDatefilterCalculator from "../api/relative-date-filter-calculator.js"; + const MAX_TEXT_COLUMN_LENGTH = 1024; export default { data() { @@ -1153,5 +1153,4 @@ function loadFormSettings(vm) { vm.dataTablePagingOptions.page = formSettings.temp.page; } } -