This commit is contained in:
@@ -279,6 +279,9 @@ TAGS - At server if equality compare value is an array of strings then it's assu
|
||||
|
||||
|
||||
---------------------- NON DATALISTVIEW STUFF ----------------------------
|
||||
TODO: Switch control has issues in mobile view throws error "touch is undefined"
|
||||
- Update and see if fixes or else switch to some other component
|
||||
TODO: HELP link on listVieweditor not working
|
||||
TODO: Add test for *NULL* and not *NULL* in datalistfilter tests as there currently aren't any
|
||||
TODO: ay-data-list-view initform code shows proper way to initialize and await each step
|
||||
- Take that model and look at all the other forms and ensure they work the same way
|
||||
|
||||
@@ -97,35 +97,37 @@
|
||||
></v-switch>
|
||||
<template v-if="item.isSortable">
|
||||
<div @click="toggleSort(item)" class="pl-2 pt-2">
|
||||
<v-btn v-if="item.sort == null" outlined>
|
||||
<v-icon>fa-sort</v-icon>{{ lt("Sort") }}</v-btn
|
||||
<v-btn large v-if="item.sort == null" icon>
|
||||
<v-icon large>fa-sort</v-icon></v-btn
|
||||
>
|
||||
<v-btn
|
||||
v-if="item.sort != null && item.sort == '-'"
|
||||
outlined
|
||||
><v-icon>fa-sort-amount-down</v-icon
|
||||
>{{ lt("Sort") }}</v-btn
|
||||
icon
|
||||
x-large
|
||||
><v-icon color="primary" x-large>fa-sort-amount-down</v-icon></v-btn
|
||||
>
|
||||
<v-btn
|
||||
v-if="item.sort != null && item.sort == '+'"
|
||||
outlined
|
||||
><v-icon>fa-sort-amount-up</v-icon
|
||||
>{{ lt("Sort") }}</v-btn
|
||||
icon
|
||||
x-large
|
||||
><v-icon color="primary" x-large
|
||||
>fa-sort-amount-up</v-icon
|
||||
></v-btn
|
||||
>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
<div class="d-flex justify-space-between">
|
||||
<v-btn outlined @click="move('start', index)"
|
||||
<v-btn icon @click="move('start', index)"
|
||||
><v-icon>fa-step-backward</v-icon></v-btn
|
||||
>
|
||||
<v-btn outlined @click="move('left', index)"
|
||||
<v-btn icon @click="move('left', index)"
|
||||
><v-icon>fa-backward</v-icon></v-btn
|
||||
>
|
||||
<v-btn outlined @click="move('right', index)"
|
||||
<v-btn icon @click="move('right', index)"
|
||||
><v-icon>fa-forward</v-icon></v-btn
|
||||
>
|
||||
<v-btn outlined @click="move('end', index)"
|
||||
<v-btn icon @click="move('end', index)"
|
||||
><v-icon>fa-step-forward</v-icon></v-btn
|
||||
>
|
||||
</div>
|
||||
@@ -189,8 +191,7 @@
|
||||
item.uiFieldDataType === 12
|
||||
"
|
||||
>
|
||||
STRING BUILDER (NO NEED FOR SEARCH BY ID AS ALL NAMES
|
||||
ARE GUARANTEED UNIQUE IN RAVEN)
|
||||
STRING BUILDER
|
||||
</div>
|
||||
|
||||
<!-- INTEGER BUILDER -->
|
||||
@@ -219,8 +220,26 @@
|
||||
</div>
|
||||
<v-divider class="mx-4 my-5"></v-divider>
|
||||
<div>
|
||||
TODO: STATIC list of items with delete button on each
|
||||
one
|
||||
<v-list>
|
||||
<v-list-item
|
||||
v-for="(filterItem, index) in item.filter.items"
|
||||
:key="index"
|
||||
>
|
||||
<v-list-item-content>
|
||||
<v-list-item-title
|
||||
v-text="
|
||||
filterItem.op + ' ' + filterItem.value
|
||||
"
|
||||
>
|
||||
</v-list-item-title>
|
||||
</v-list-item-content>
|
||||
<v-list-item-action>
|
||||
<v-btn icon>
|
||||
<v-icon>fa-trash-alt</v-icon>
|
||||
</v-btn>
|
||||
</v-list-item-action>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
<v-divider></v-divider>
|
||||
{{ item }}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user