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