Hummm, why am I seeing criteria strings coming through as arrays on my production server?
Interesting enough I don't see it on my development machine (Windows vs Linux?)
The following is what I have on the client side to set the SelectList option's data source.
Interesting enough I don't see it on my development machine (Windows vs Linux?)
Code:
=== 2011-10-28 15:39:44,407 [ec-5] DEBUG RPCManager - Request #1 (DSRequest) payload: {
criteria:{
clientName:{
"0":"W",
"1":"a",
"2":"l",
"3":"g",
"4":"r",
"5":"e",
"6":"e",
"7":"n",
"8":"s",
cM:{
"1":1,
"108":1,
"109":1,
"110":1
}
}
},
Code:
selectItem.setOptionCriteria(new Criteria("clientName", comboBoxItem.getValue().toString()));
Comment