This commit is contained in:
@@ -2,7 +2,7 @@ Grab bag stuff that didn't fit into official TODO
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
todo: missing feature, can't filter widgetlist by User due to no UserList being available
|
todo: PROBABLY NOT REQUIRED SEE BOTTOM LINE BELOW: missing feature, can't filter widgetlist by User due to no UserList being available
|
||||||
Is this meant to be text only filter and we have no id filter system?
|
Is this meant to be text only filter and we have no id filter system?
|
||||||
How hard to add proper list selection and ID because it seems important?
|
How hard to add proper list selection and ID because it seems important?
|
||||||
thoughts:
|
thoughts:
|
||||||
@@ -12,6 +12,7 @@ thoughts:
|
|||||||
it's better that they can select by click
|
it's better that they can select by click
|
||||||
but it's limiting in that they can't type "Ford*" and get all items that start with "Ford " i.e. all Ford dealers
|
but it's limiting in that they can't type "Ford*" and get all items that start with "Ford " i.e. all Ford dealers
|
||||||
but if they want a specific ford dealer they can type "Ford Nashville Center" or whatever and get that specfic one
|
but if they want a specific ford dealer they can type "Ford Nashville Center" or whatever and get that specfic one
|
||||||
|
## BOTTOM LINE: the text filter works perfectly even for filtering widgets by user name and you can do starts with etc so easy peasy, I don't see the need for this
|
||||||
possible implementation:
|
possible implementation:
|
||||||
it appears that the server code filter criteria builder is built with this in mind (see below)
|
it appears that the server code filter criteria builder is built with this in mind (see below)
|
||||||
so it may be a case of changing DataList field definitions like this one:
|
so it may be a case of changing DataList field definitions like this one:
|
||||||
|
|||||||
@@ -6,19 +6,13 @@
|
|||||||
MISC ITEMS THAT CAME UP
|
MISC ITEMS THAT CAME UP
|
||||||
|
|
||||||
|
|
||||||
todo: test filtering linked objects in grids by name to see if that is sufficient for user purposes
|
|
||||||
e.g. widgetdatalist filter the User field by the name and see if that works well enough
|
|
||||||
|
|
||||||
todo: tag search is unguessable without reading docs, could there be a hint or something?
|
|
||||||
FAQ of the day?
|
|
||||||
How to use form controls link in the controls?
|
|
||||||
a hint?
|
|
||||||
Bueller.....?
|
|
||||||
|
|
||||||
todo: User list selection checkbox is for...?
|
todo: User list selection checkbox is for...?
|
||||||
Report also doesn't seem to work on that form, wtf?
|
Report also doesn't seem to work on that form, wtf?
|
||||||
remove it if there isn't a purpose to it and bulk ops are not supported
|
remove it if there isn't a purpose to it and bulk ops are not supported
|
||||||
|
|
||||||
|
todo: logout doesn't shut off check for notifications?
|
||||||
|
logout and shut down server get error appear in client??!
|
||||||
|
|
||||||
todo: TEST DEPLOY TO DEVOPS FOR TESTING NEW CUSTOMER STUFF THOROUGHLY
|
todo: TEST DEPLOY TO DEVOPS FOR TESTING NEW CUSTOMER STUFF THOROUGHLY
|
||||||
............................................................
|
............................................................
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ export default {
|
|||||||
//open help nav for picklist
|
//open help nav for picklist
|
||||||
window.$gz.eventBus.$emit("menu-click", {
|
window.$gz.eventBus.$emit("menu-click", {
|
||||||
key: "app:help",
|
key: "app:help",
|
||||||
data: "ay-start-form-select-list"
|
data: "ay-start-form-select-list/#searching"
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
editIcon: function() {
|
editIcon: function() {
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
|
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<!-- INCLUDE CONTROL -->
|
<!-- INCLUDE CONTROL -->
|
||||||
{{ item }}
|
<!-- {{ item }} -->
|
||||||
<v-switch
|
<v-switch
|
||||||
v-if="!item.rid"
|
v-if="!item.rid"
|
||||||
v-model="item.include"
|
v-model="item.include"
|
||||||
|
|||||||
Reference in New Issue
Block a user