This commit is contained in:
@@ -147,7 +147,7 @@
|
|||||||
></v-radio>
|
></v-radio>
|
||||||
</v-radio-group>
|
</v-radio-group>
|
||||||
<div>
|
<div>
|
||||||
TODO: condition builder row and add button
|
ADD BUTTON|OP PICKLIST|VALUE
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
TODO: list of items with delete button on each one
|
TODO: list of items with delete button on each one
|
||||||
@@ -232,7 +232,37 @@ export default {
|
|||||||
fieldDefinitions: [],
|
fieldDefinitions: [],
|
||||||
effectiveListView: undefined,
|
effectiveListView: undefined,
|
||||||
concurrencyToken: undefined,
|
concurrencyToken: undefined,
|
||||||
pickLists: {},
|
/*
|
||||||
|
public const string OpEquality = "=";
|
||||||
|
public const string OpGreaterThan = ">";
|
||||||
|
public const string OpGreaterThanOrEqualTo = ">=";
|
||||||
|
public const string OpLessThan = "<";
|
||||||
|
public const string OpLessThanOrEqualTo = "<=";
|
||||||
|
public const string OpNotEqual = "!=";
|
||||||
|
public const string OpNotLike = "!%";
|
||||||
|
public const string OpStartsWith = "%-";
|
||||||
|
public const string OpEndsWith = "-%";
|
||||||
|
public const string OpContains = "-%-";
|
||||||
|
public const string OpNotContains = "!-%-";
|
||||||
|
*/
|
||||||
|
pickLists: {
|
||||||
|
dateFilterOperators: [
|
||||||
|
{ name: this.lt("GridRowFilterDropDownEquals"), id: "=" },
|
||||||
|
{ name: this.lt("GridRowFilterDropDownGreaterThan"), id: ">" },
|
||||||
|
{
|
||||||
|
name: this.lt("GridRowFilterDropDownGreaterThanOrEqualTo"),
|
||||||
|
id: ">="
|
||||||
|
},
|
||||||
|
{ name: this.lt("GridRowFilterDropDownLessThan"), id: "<" },
|
||||||
|
{ name: this.lt("GridRowFilterDropDownLessThanOrEqualTo"), id: "<=" },
|
||||||
|
{ name: this.lt("GridRowFilterDropDownNotEquals"), id: "!=" }
|
||||||
|
],
|
||||||
|
stringFilterOperators: [], //maybe this one contains by Specific ID? Easy thing to do would be to say fuck it and it must be just text, no id filter TBD
|
||||||
|
integerFilterOperators: [],
|
||||||
|
boolFilterOperators: [],
|
||||||
|
decimalFilterOperators: [],
|
||||||
|
tagFilterOperators: []
|
||||||
|
},
|
||||||
formState: {
|
formState: {
|
||||||
ready: false,
|
ready: false,
|
||||||
dirty: false,
|
dirty: false,
|
||||||
|
|||||||
Reference in New Issue
Block a user