This commit is contained in:
@@ -76,9 +76,10 @@ 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!!! Do tags mofo
|
TODO: TAGS!!!
|
||||||
- https://stackoverflow.com/questions/48500587/vuetify-v0-17-6-how-to-get-the-autocomplete-text-inside-v-select
|
- Adding a new tag doesn't flag the record as dirty! (selecting does though)
|
||||||
-
|
- COMPONENTIZE
|
||||||
|
|
||||||
TODO: Custom fields
|
TODO: Custom fields
|
||||||
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
|
- Some of this stuff is stage 2 for the edit form
|
||||||
|
|||||||
@@ -161,10 +161,15 @@
|
|||||||
<v-container>
|
<v-container>
|
||||||
<v-layout row>
|
<v-layout row>
|
||||||
<v-layout justify-center>
|
<v-layout justify-center>
|
||||||
"{{ this.$gzutil.normalizeTag(tagSearchEntry) }}"
|
<v-chip
|
||||||
|
color="primary"
|
||||||
<v-btn icon @click="addTag()">
|
text-color="white"
|
||||||
<v-icon>fa-plus-circle</v-icon>
|
class="display-1"
|
||||||
|
>
|
||||||
|
{{ this.$gzutil.normalizeTag(tagSearchEntry) }}</v-chip
|
||||||
|
>
|
||||||
|
<v-btn large icon @click="addTag()">
|
||||||
|
<v-icon large color="success">fa-plus-circle</v-icon>
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
</v-layout>
|
</v-layout>
|
||||||
@@ -563,7 +568,7 @@ export default {
|
|||||||
//make sure there are no existing of the same tag
|
//make sure there are no existing of the same tag
|
||||||
this.pickLists.tags.push(theTag);
|
this.pickLists.tags.push(theTag);
|
||||||
this.obj.tags.push(theTag);
|
this.obj.tags.push(theTag);
|
||||||
this.tagSearchEntry="";
|
this.tagSearchEntry = "";
|
||||||
//add tags to existing picklist so that it contains all the unique tags ever searched for or present in the object
|
//add tags to existing picklist so that it contains all the unique tags ever searched for or present in the object
|
||||||
//vm.pickLists.tags+=tags
|
//vm.pickLists.tags+=tags
|
||||||
//vm.pickLists.tags=uniqueonly(vm.pickLists.tags)
|
//vm.pickLists.tags=uniqueonly(vm.pickLists.tags)
|
||||||
|
|||||||
Reference in New Issue
Block a user