This commit is contained in:
2020-12-01 00:31:58 +00:00
parent 89038a1a70
commit 5353f26c1c
3 changed files with 26 additions and 12 deletions

View File

@@ -5,22 +5,14 @@
MISC ITEMS THAT CAME UP
todo: 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?
How hard to add proper list selection and ID because it seems important?
fucking grids are always fucking fucked due to the filter and sort fucking shit
todo: picklist clear doesn't trigger dirty change
maybe doesn't emit?
todo: Uifielddatatype Phone and TimeSpan support at client, translation keys etc
TimeSpan=15, PhoneNumber=16//this is so client can dial directly
ay-customize.vue
gz-data-table.vue
ay-data-list-view.vue
todo: User list selection box is for...?
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
todo: search form weirdness
ICONS
@@ -34,12 +26,24 @@ todo: search form weirdness
todo: notification queue? Is there a need for a form where can see all queued notifications and delete them or something in case of issues?
or maybe just a single clear it all out button?
todo: 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?
How hard to add proper list selection and ID because it seems important?
fucking grids are always fucking fucked due to the filter and sort fucking shit
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...?
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
todo: TEST ON SERVER CUSTOMER STUFF
............................................................

View File

@@ -159,6 +159,10 @@
<!-- File / memory Size -->
{{ c.v }}
</template>
<template v-else-if="c.t == 16">
<!-- PHONE NUMBER -->
<a :href="'tel:' + c.v">{{ c.v }}</a>
</template>
<template v-else>
<!-- UNKNOWN -->
{{ c.v }}
@@ -333,6 +337,10 @@
<!-- File / memory Size -->
{{ c.v }}
</template>
<template v-else-if="c.t == 16">
<!-- PHONE NUMBER -->
<a :href="'tel:' + c.v">{{ c.v }}</a>
</template>
<template v-else>
<!-- UNKNOWN -->
{{ c.v }}

View File

@@ -104,6 +104,7 @@
<template v-if="item.isFilterable">
<div class="pt-6">
<!-- ******** BUILDER FOR EACH TYPE Tag, decimal,currency, bool, integer, string, datetime ******** -->
<!-- NOTE: currently not implemented: TimeSpan=15, seems unsupportable for a filter -->
<!-- DATETIME BUILDER -->
<div v-if="item.uiFieldDataType === 1">
<v-select
@@ -138,12 +139,13 @@
>
</div>
<!-- STRING(text-4, emailaddress-11, http-12) BUILDER -->
<!-- STRING(text-4, emailaddress-11, http-12, phone-16) BUILDER -->
<div
v-if="
item.uiFieldDataType === 4 ||
item.uiFieldDataType === 11 ||
item.uiFieldDataType === 12
item.uiFieldDataType === 12 ||
item.uiFieldDataType === 16
"
>
<v-select