This commit is contained in:
@@ -5,22 +5,14 @@
|
|||||||
|
|
||||||
MISC ITEMS THAT CAME UP
|
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
|
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
|
ay-customize.vue
|
||||||
gz-data-table.vue
|
gz-data-table.vue
|
||||||
ay-data-list-view.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
|
todo: search form weirdness
|
||||||
ICONS
|
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?
|
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?
|
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?
|
todo: tag search is unguessable without reading docs, could there be a hint or something?
|
||||||
FAQ of the day?
|
FAQ of the day?
|
||||||
How to use form controls link in the controls?
|
How to use form controls link in the controls?
|
||||||
a hint?
|
a hint?
|
||||||
Bueller.....?
|
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
|
todo: TEST ON SERVER CUSTOMER STUFF
|
||||||
............................................................
|
............................................................
|
||||||
|
|
||||||
|
|||||||
@@ -159,6 +159,10 @@
|
|||||||
<!-- File / memory Size -->
|
<!-- File / memory Size -->
|
||||||
{{ c.v }}
|
{{ c.v }}
|
||||||
</template>
|
</template>
|
||||||
|
<template v-else-if="c.t == 16">
|
||||||
|
<!-- PHONE NUMBER -->
|
||||||
|
<a :href="'tel:' + c.v">{{ c.v }}</a>
|
||||||
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<!-- UNKNOWN -->
|
<!-- UNKNOWN -->
|
||||||
{{ c.v }}
|
{{ c.v }}
|
||||||
@@ -333,6 +337,10 @@
|
|||||||
<!-- File / memory Size -->
|
<!-- File / memory Size -->
|
||||||
{{ c.v }}
|
{{ c.v }}
|
||||||
</template>
|
</template>
|
||||||
|
<template v-else-if="c.t == 16">
|
||||||
|
<!-- PHONE NUMBER -->
|
||||||
|
<a :href="'tel:' + c.v">{{ c.v }}</a>
|
||||||
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<!-- UNKNOWN -->
|
<!-- UNKNOWN -->
|
||||||
{{ c.v }}
|
{{ c.v }}
|
||||||
|
|||||||
@@ -104,6 +104,7 @@
|
|||||||
<template v-if="item.isFilterable">
|
<template v-if="item.isFilterable">
|
||||||
<div class="pt-6">
|
<div class="pt-6">
|
||||||
<!-- ******** BUILDER FOR EACH TYPE Tag, decimal,currency, bool, integer, string, datetime ******** -->
|
<!-- ******** BUILDER FOR EACH TYPE Tag, decimal,currency, bool, integer, string, datetime ******** -->
|
||||||
|
<!-- NOTE: currently not implemented: TimeSpan=15, seems unsupportable for a filter -->
|
||||||
<!-- DATETIME BUILDER -->
|
<!-- DATETIME BUILDER -->
|
||||||
<div v-if="item.uiFieldDataType === 1">
|
<div v-if="item.uiFieldDataType === 1">
|
||||||
<v-select
|
<v-select
|
||||||
@@ -138,12 +139,13 @@
|
|||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- STRING(text-4, emailaddress-11, http-12) BUILDER -->
|
<!-- STRING(text-4, emailaddress-11, http-12, phone-16) BUILDER -->
|
||||||
<div
|
<div
|
||||||
v-if="
|
v-if="
|
||||||
item.uiFieldDataType === 4 ||
|
item.uiFieldDataType === 4 ||
|
||||||
item.uiFieldDataType === 11 ||
|
item.uiFieldDataType === 11 ||
|
||||||
item.uiFieldDataType === 12
|
item.uiFieldDataType === 12 ||
|
||||||
|
item.uiFieldDataType === 16
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<v-select
|
<v-select
|
||||||
|
|||||||
Reference in New Issue
Block a user