Hi,
My json rest service omits fields when the values is null and looks like GRID can't handle such datasources.
My json rest service omits fields when the values is null and looks like GRID can't handle such datasources.
Number is not null{
Number is null{
"id"
:
"0422842A222780"
,
"number"
:
"0422842A222780"
}
{
"id"
:
"0422842A222780"
}
As a result I see empty grid. When I remove this field from displaying all works fine Is there any solution?model:{
id:
"id"
,
fields:{
id:{type:
"string"
, editable:
false
},
number:{type:
"string"
, editable:
false
, nullable:
true
},
}
}