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

@@ -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