myDS.fetchData({
_constructor:"AdvancedCriteria",
operator:"and",
criteria:[
{fieldName:'startDate', operator:"greaterThan", value:'2015-10-08 14:05:01 -0700'}
]
}, ...
The following is the error message:
java.lang.IllegalArgumentException: Parameter value [2015-10-08 14:05:01 -0700] did not match expected type [java.util.Date (n/a)] occurred.
_constructor:"AdvancedCriteria",
operator:"and",
criteria:[
{fieldName:'startDate', operator:"greaterThan", value:'2015-10-08 14:05:01 -0700'}
]
}, ...
The following is the error message:
java.lang.IllegalArgumentException: Parameter value [2015-10-08 14:05:01 -0700] did not match expected type [java.util.Date (n/a)] occurred.
Comment