I'm using SmartClient 8 (2011-01-05).
On a DynamicForm with a databound SelectItem
we have a problem with the datatype sent back to the server in case of a update request.
In version 7 the client has sent a list if the user has selected multiple values.
With version 8 the client sends a string with the comma-separated values (e.g. "value1,value2").
Even if the 'previous values' part of the same request still holds a list for this item (e.g. ["value1","value2"].
I will submit the complete Request-XML, the problem is with field 'classification1'
On a DynamicForm with a databound SelectItem
Code:
{ name : "classification1", titleAlign : "left", width : "*", required : true, editorType : "select", multiple : true, autoFetchData: false },
In version 7 the client has sent a list if the user has selected multiple values.
With version 8 the client sends a string with the comma-separated values (e.g. "value1,value2").
Even if the 'previous values' part of the same request still holds a list for this item (e.g. ["value1","value2"].
I will submit the complete Request-XML, the problem is with field 'classification1'
Comment