This commit is contained in:
2020-02-19 22:24:25 +00:00
parent 033ab53138
commit d582829739

View File

@@ -147,7 +147,7 @@
></v-radio>
</v-radio-group>
<div>
TODO: condition builder row and add button
ADD BUTTON|OP PICKLIST|VALUE
</div>
<div>
TODO: list of items with delete button on each one
@@ -232,7 +232,37 @@ export default {
fieldDefinitions: [],
effectiveListView: 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: {
ready: false,
dirty: false,