smartgwt pro 5.0 October 6 build
Basically what the title says. I'm rewriting some code to send criteria manually to server where i previously used setdefaultparams on the DataSource. All criteria that are "single" objects work and are passed to the server, but i also have an integer array i'm sending. I call the method, no exception is thrown or anything, but the value is simply not included when sent to the server (i'm debugging with Firebug)
code:
Above and below this snippet i have other parameters added to the criteria. As i said, they are all included fine.
Shouldn't this work? The Javadoc doesn't say anything restricting the use of the method.
Basically what the title says. I'm rewriting some code to send criteria manually to server where i previously used setdefaultparams on the DataSource. All criteria that are "single" objects work and are passed to the server, but i also have an integer array i'm sending. I call the method, no exception is thrown or anything, but the value is simply not included when sent to the server (i'm debugging with Firebug)
code:
Code:
List<Integer> selection = trafficLight.getSelection(); if(selection != null){ crit.addCriteria("flag" selection); }
Shouldn't this work? The Javadoc doesn't say anything restricting the use of the method.
Comment