Hi,
Please give me a hint why it could happen. (SmartGWT 2.2)
I create criteria with AdvancedCriteria(String fieldName, OperatorId operator, String value) construtor and use it then in grid.filterData(criteria) operator.
In development mode I see that request contains:
criteria {"fieldName":"extension","operator":"contains","value":"11"}
criteria {"fieldName":"description","operator":"contains","value":"22"}
but running the same code in production mode I see
criteria {"fieldName":"extension","operator":"contains","value":{"0":"1","1":"1","tI":2}}
criteria {"fieldName":"description","operator":"contains","value":{"0":"2","1":"2","tI":2}}
Please give me a hint why it could happen. (SmartGWT 2.2)
I create criteria with AdvancedCriteria(String fieldName, OperatorId operator, String value) construtor and use it then in grid.filterData(criteria) operator.
In development mode I see that request contains:
criteria {"fieldName":"extension","operator":"contains","value":"11"}
criteria {"fieldName":"description","operator":"contains","value":"22"}
but running the same code in production mode I see
criteria {"fieldName":"extension","operator":"contains","value":{"0":"1","1":"1","tI":2}}
criteria {"fieldName":"description","operator":"contains","value":{"0":"2","1":"2","tI":2}}
Comment