Every since I updated my project from build "5.1-d20140907-SNAPSHOT" to build "5.1-p20151218", I am getting the exception "Cannot cast java.lang.String to java.util.List"
Here is the line of code it is complaining about:
The object passed in the criteria is of type String[]
Please help me understand why the different smartgwt build is causing the exception.
Here is the line of code it is complaining about:
Code:
List<String> sensorListing = (List<String>) request.getCriteriaValue("sensorId");
Please help me understand why the different smartgwt build is causing the exception.
Comment