This commit is contained in:
@@ -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 }}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user