This commit is contained in:
@@ -43,7 +43,9 @@ todo: User grids, cursor changed to indicate a clickable entire line for each it
|
|||||||
todo: bugbug datetime control clear buttons don't trigger emit of empty date times
|
todo: bugbug datetime control clear buttons don't trigger emit of empty date times
|
||||||
contractexpires on customer form clearing it and saving sends date to server as if it wasn't cleared at all
|
contractexpires on customer form clearing it and saving sends date to server as if it wasn't cleared at all
|
||||||
Better solution: one clear button that clears all and emits properly and disable the built in if possible
|
Better solution: one clear button that clears all and emits properly and disable the built in if possible
|
||||||
|
todo: gz-data-table make sure unbounded notes column is bounded by some length restriction
|
||||||
|
mobile format is ok, it cuts off at one line, but for desktop we should have a sane limit as right now it's completely unbounded
|
||||||
|
this should apply to any column that displays text but particularly just the plain text ones
|
||||||
todo: picklist empty null vs zero
|
todo: picklist empty null vs zero
|
||||||
test with customer and headofficeid
|
test with customer and headofficeid
|
||||||
should have the empty selection pre-selected or maybe I need to do away with that since the clear button does the same thing?
|
should have the empty selection pre-selected or maybe I need to do away with that since the clear button does the same thing?
|
||||||
|
|||||||
@@ -21,6 +21,12 @@ export default {
|
|||||||
params: { recordid: tid.id }
|
params: { recordid: tid.id }
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
case ayatype.CustomerNote:
|
||||||
|
vm.$router.push({
|
||||||
|
name: "customer-note-edit",
|
||||||
|
params: { recordid: tid.id }
|
||||||
|
});
|
||||||
|
break;
|
||||||
case ayatype.Widget:
|
case ayatype.Widget:
|
||||||
vm.$router.push({
|
vm.$router.push({
|
||||||
name: "widget-edit",
|
name: "widget-edit",
|
||||||
|
|||||||
@@ -393,6 +393,10 @@ export default {
|
|||||||
},
|
},
|
||||||
formKey: String,
|
formKey: String,
|
||||||
dataListKey: String,
|
dataListKey: String,
|
||||||
|
metaView: {
|
||||||
|
type: String,
|
||||||
|
default: undefined
|
||||||
|
},
|
||||||
showSelect: {
|
showSelect: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false
|
default: false
|
||||||
@@ -481,7 +485,8 @@ export default {
|
|||||||
ObjectType: ayaType,
|
ObjectType: ayaType,
|
||||||
selectedRowIds: selectedRowIds,
|
selectedRowIds: selectedRowIds,
|
||||||
dataListKey: vm.dataListKey,
|
dataListKey: vm.dataListKey,
|
||||||
listView: untokenizeListView(vm.listView)
|
listView: untokenizeListView(vm.listView),
|
||||||
|
metaView: vm.metaView
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
handleSelectChange() {
|
handleSelectChange() {
|
||||||
@@ -596,7 +601,8 @@ export default {
|
|||||||
offset: listOptions.Offset,
|
offset: listOptions.Offset,
|
||||||
limit: listOptions.Limit,
|
limit: listOptions.Limit,
|
||||||
dataListKey: vm.dataListKey,
|
dataListKey: vm.dataListKey,
|
||||||
listView: untokenizedListView
|
listView: untokenizedListView,
|
||||||
|
metaView: vm.metaView
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res.error) {
|
if (res.error) {
|
||||||
|
|||||||
Reference in New Issue
Block a user