This commit is contained in:
@@ -46,6 +46,14 @@ CURRENT TODOs
|
|||||||
|
|
||||||
TODO: FILTER AT CLIENT
|
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
|
ListViewEditor
|
||||||
- Needs to know what formsettings key is in use to check with PUT ON ROUTE
|
- 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
|
- Needs to know which DataList key to work with PUT ON ROUTE
|
||||||
|
|||||||
@@ -401,7 +401,7 @@ export default new Router({
|
|||||||
import(/* webpackChunkName: "ay" */ "./views/ay-customize.vue")
|
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",
|
name: "ay-data-list-view",
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "ay" */ "./views/ay-data-list-view.vue")
|
import(/* webpackChunkName: "ay" */ "./views/ay-data-list-view.vue")
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
currentDataFilterId: 1,
|
currentListViewId: 1,
|
||||||
dataListKey: "TestWidgetDataList",
|
dataListKey: "TestWidgetDataList",
|
||||||
dataListFilter: "",
|
dataListFilter: "",
|
||||||
dataListSort: ""
|
dataListSort: ""
|
||||||
@@ -70,7 +70,7 @@ function clickHandler(menuItem) {
|
|||||||
m.vm.$router.push({
|
m.vm.$router.push({
|
||||||
name: "ay-data-list-view",
|
name: "ay-data-list-view",
|
||||||
params: {
|
params: {
|
||||||
recordid: m.vm.currentDataFilterId,
|
recordid: m.vm.currentListViewId,
|
||||||
dataListKey: m.vm.dataListKey
|
dataListKey: m.vm.dataListKey
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user