This question is locked. New answers and comments are not allowed.
I've built my own query interface and I'm manually setting the grid.filterBy string. I am using an 'and' between my criteria, but server side is looks like the FilterParser.cs is just processing the first part of my filter. I debugged it and it also looks like it's specifically designed to return an or filter.
This is the string I'm building in javascript:
grid.filterBy="substringof(InvoiceNumber,'32'))~and~substringof(CustomerPONumber,'55'))";
No matter what I do, the server grid command only ever has one FilterDescriptor in it
This is the string I'm building in javascript:
grid.filterBy="substringof(InvoiceNumber,'32'))~and~substringof(CustomerPONumber,'55'))";
No matter what I do, the server grid command only ever has one FilterDescriptor in it