Hi,
I have the following multiple filters working in a lookup:
"filters": [
function() {
var filterGroup = Ext.create("Terrasoft.FilterGroup");
filterGroup.add("Segment",
Terrasoft.createColumnFilterWithParameter(
Terrasoft.ComparisonType.EQUAL,
"GlgSegment",this.get("GlgSegment").value));
filterGroup.add("SegmentLeaderRole",
Terrasoft.createColumnFilterWithParameter(
Terrasoft.ComparisonType.EQUAL,
"Role","A25AD3ED-1095-4774-91E1-54BED571EA3B"));
return filterGroup;
}
]
I need to add another filter but ordering the filters in the following logical operation:
Segment AND (Role OR Role)
Looking forward to your comments.
Regards,
Javier