diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index df209d72..983528a2 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -46,6 +46,14 @@ CURRENT TODOs TODO: FILTER AT CLIENT +PICKLIST + - Picklists have all teh same requirements except they are used all over and replicated on many forms so they will have their own store considerations when the time comes + + +DataTable FORM: + - Allows selection of listView, has button to go edit the listview + - Checks store under form key to see if there is a view or unsaved etc see below + ListViewEditor - Needs to know what formsettings key is in use to check with PUT ON ROUTE - Needs to know which DataList key to work with PUT ON ROUTE diff --git a/ayanova/src/router.js b/ayanova/src/router.js index fbb033e3..26c32bb9 100644 --- a/ayanova/src/router.js +++ b/ayanova/src/router.js @@ -401,7 +401,7 @@ export default new Router({ import(/* webpackChunkName: "ay" */ "./views/ay-customize.vue") }, { - path: "/ay-data-list-view/:recordid/:dataListKey", + path: "/ay-data-list-view/:listviewid/:dataListKey", name: "ay-data-list-view", component: () => import(/* webpackChunkName: "ay" */ "./views/ay-data-list-view.vue") diff --git a/ayanova/src/views/test-widgets.vue b/ayanova/src/views/test-widgets.vue index 5d6eae39..50c20641 100644 --- a/ayanova/src/views/test-widgets.vue +++ b/ayanova/src/views/test-widgets.vue @@ -43,7 +43,7 @@ export default { }, data() { return { - currentDataFilterId: 1, + currentListViewId: 1, dataListKey: "TestWidgetDataList", dataListFilter: "", dataListSort: "" @@ -70,7 +70,7 @@ function clickHandler(menuItem) { m.vm.$router.push({ name: "ay-data-list-view", params: { - recordid: m.vm.currentDataFilterId, + recordid: m.vm.currentListViewId, dataListKey: m.vm.dataListKey } });