This commit is contained in:
@@ -288,6 +288,11 @@ export default {
|
||||
*/
|
||||
pickLists: {
|
||||
dateFilterOperators: [
|
||||
{ name: this.lt("GridRowFilterDropDownBlanksItem"), id: "*NOVALUE*" },
|
||||
{
|
||||
name: this.lt("GridRowFilterDropDownNonBlanksItem"),
|
||||
id: "*HASVALUE*"
|
||||
},
|
||||
{ name: this.lt("GridRowFilterDropDownEquals"), id: "=" },
|
||||
{ name: this.lt("GridRowFilterDropDownGreaterThan"), id: ">" },
|
||||
{
|
||||
@@ -329,6 +334,11 @@ export default {
|
||||
{ name: this.lt("DateRangePast24Hours"), id: "*past24hours*" }
|
||||
],
|
||||
stringFilterOperators: [
|
||||
{ name: this.lt("GridRowFilterDropDownBlanksItem"), id: "*NOVALUE*" },
|
||||
{
|
||||
name: this.lt("GridRowFilterDropDownNonBlanksItem"),
|
||||
id: "*HASVALUE*"
|
||||
},
|
||||
{ name: this.lt("GridRowFilterDropDownEquals"), id: "=" },
|
||||
{ name: this.lt("GridRowFilterDropDownGreaterThan"), id: ">" },
|
||||
{
|
||||
@@ -344,6 +354,11 @@ export default {
|
||||
{ name: this.lt("GridRowFilterDropDownEndsWith"), id: "-%" }
|
||||
], //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: [
|
||||
{ name: this.lt("GridRowFilterDropDownBlanksItem"), id: "*NOVALUE*" },
|
||||
{
|
||||
name: this.lt("GridRowFilterDropDownNonBlanksItem"),
|
||||
id: "*HASVALUE*"
|
||||
},
|
||||
{ name: this.lt("GridRowFilterDropDownEquals"), id: "=" },
|
||||
{ name: this.lt("GridRowFilterDropDownGreaterThan"), id: ">" },
|
||||
{
|
||||
@@ -355,10 +370,20 @@ export default {
|
||||
{ name: this.lt("GridRowFilterDropDownNotEquals"), id: "!=" }
|
||||
],
|
||||
boolFilterOperators: [
|
||||
{ name: this.lt("GridRowFilterDropDownBlanksItem"), id: "*NOVALUE*" },
|
||||
{
|
||||
name: this.lt("GridRowFilterDropDownNonBlanksItem"),
|
||||
id: "*HASVALUE*"
|
||||
},
|
||||
{ name: this.lt("GridRowFilterDropDownEquals"), id: "=" },
|
||||
{ name: this.lt("GridRowFilterDropDownNotEquals"), id: "!=" }
|
||||
],
|
||||
decimalFilterOperators: [
|
||||
{ name: this.lt("GridRowFilterDropDownBlanksItem"), id: "*NOVALUE*" },
|
||||
{
|
||||
name: this.lt("GridRowFilterDropDownNonBlanksItem"),
|
||||
id: "*HASVALUE*"
|
||||
},
|
||||
{ name: this.lt("GridRowFilterDropDownEquals"), id: "=" },
|
||||
{ name: this.lt("GridRowFilterDropDownGreaterThan"), id: ">" },
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user