This commit is contained in:
2019-06-21 20:48:08 +00:00
parent 0a98f703d1
commit 89854e1ebb
2 changed files with 11 additions and 12 deletions

View File

@@ -76,15 +76,15 @@ DONE: For form initialization modify widget edit make an simple init call for on
DONE: Turn widget edit ROLES into a static select populated from server DONE: Turn widget edit ROLES into a static select populated from server
- Use the enumpicklist route to get a list of roles and use it for the widget UI - Use the enumpicklist route to get a list of roles and use it for the widget UI
DONE: Widget - NOTES FIELD DONE: Widget - NOTES FIELD
TODO: TAGS!!! DONE: TAGS!!!
- Implement and componentize - Implement and componentize
### TODO: Custom fields
TODO: Custom fields - Implement then Componentize
- Componentize - Maybe start with a component first now that I have my feet wet in it, saves time
TODO: Record history display / check other AyaNova 7 options / buttons that need to carry forward TODO: Record history display / check other AyaNova 7 options / buttons that need to carry forward
- Some of this stuff is stage 2 for the edit form - implement and componentize
- Record history could be displayed on a timeline: https://vuetifyjs.com/en/components/timelines - Record history could be displayed on a timeline: https://vuetifyjs.com/en/components/timelines
- componentize
TODO: WIKI TODO: WIKI
- componentize - componentize
TODO: Attached documents TODO: Attached documents

View File

@@ -78,10 +78,9 @@ export default {
}, },
value(val) { value(val) {
//this ensures the parent form gets the onchange event //this ensures the parent form gets the onchange event
//not actually sure why there are two here but it worked with the datetime picker so I replicated it here
this.$emit("input", val); this.$emit("input", val);
this.$emit("change", val); //always in UTC this.$emit("change", val);
// }
// this.localValue = this.value;
} }
}, },
@@ -89,7 +88,7 @@ export default {
addTag() { addTag() {
var theTag = this.tagSearchEntry; var theTag = this.tagSearchEntry;
theTag = this.normalizeTag(theTag); theTag = this.normalizeTag(theTag);
//make sure there are no existing of the same tag? //Maybe need to make sure there are no existing of the same tag? Although that shouldn't be possible technically
this.sourcetags.push(theTag); this.sourcetags.push(theTag);
this.value.push(theTag); this.value.push(theTag);
this.tagSearchEntry = ""; this.tagSearchEntry = "";