Hello, while trying to migrate an application to 11.0, I've found a problem but I don't know if it's a regression in SmartClient framework or not.
I've got a client DSRequest with a criteria like this:
previously using this code in a DMI:
will give me a List. Now it will result in the first value of CODICE_SETTORE array.
To obtain the List I can use
but I don't know if it's a regression in the framework or only a bad practice in my code which worked in the past. I suspect I've got many of those usage of getCriteriaValue.
I've got a client DSRequest with a criteria like this:
Code:
2016-04-22 14:59:43,216 DEBUG RPCManager Request #1 (DSRequest) payload: {
criteria:{
CODICE_SETTORE:[
"M01",
...
"M40"
],
ID_LISTINI_FK:23
},
...
Code:
dsRequest.getCriteriaValue("CODICE_SETTORE")
To obtain the List I can use
Code:
dsRequest.getClientSuppliedCriteria().get("CODICE_SETTORE")
Comment