SmartClient Version 8.0
in DMI#fetch
just return dsResponse.data = List<Map<String, Object>>
that map contain key/value pair with null values
I just try to set omitNullMapValuesInResponse=true, or omitNullMapValuesInResponse=false, but that entry with null value in that map can not pass to client
I would like the response showing as below, but how can I do it ?
//isc_RPCResponseStart-->[
{
queueStatus:0,
isDSResponse:true,
invalidateCache:false,
status:0,
data:[
{
status:"Y",
port:null, <-----this entry can NOT show ????
.....
in DMI#fetch
just return dsResponse.data = List<Map<String, Object>>
that map contain key/value pair with null values
I just try to set omitNullMapValuesInResponse=true, or omitNullMapValuesInResponse=false, but that entry with null value in that map can not pass to client
I would like the response showing as below, but how can I do it ?
//isc_RPCResponseStart-->[
{
queueStatus:0,
isDSResponse:true,
invalidateCache:false,
status:0,
data:[
{
status:"Y",
port:null, <-----this entry can NOT show ????
.....
Comment