This commit is contained in:
2020-02-17 20:02:49 +00:00
parent c8e396a057
commit d274a1c9df
3 changed files with 11 additions and 3 deletions

View File

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

View File

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

View File

@@ -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
}
});