我正在尝试在可编辑数据网格中显示json对象,但无法显示键值(显示[object Object])。 到目前为止我尝试了什么
columns:[[
{field:'id',title:'S.No',width:60,hidden:true},
{field:'tblLookUpList',title:'Dependent Lookup Value',value:'lookUpValue',width:150,sortable:true,align:'left',
editor:{
type:'combobox',
options:{
url:'${request.getContextPath()}/tblLookUp/getTblLookUp',
dataType: 'json',
valueField:'id',
textField:'lookUpValue',
displayField:'lookUpValue',
panelHeight:'auto',
editable:false
}
}
},
{field:'conditionalLookUpValue',value:'conditionalDisplayValue',title:'Lookup value',width:80,align:'right',editor:{type:'text',options:{required:true}}},
{field:'conditionalDisplayValue',title:'Display Value',width:80,align:'right',editor:{type:'text',options:{required:true}}},
{field:'activeStatus',title:'Active',width:50,align:'center',
editor:{
type:'checkbox',
options:{
on: 'A',
off: ''
}
}
},
这里tblLookUpList
(在第3行中提到)字段是对象类型,在这里我如何区分它。
现在的O / p: -
但是这里显示的值不是像[object Object]