我的对象没有显示可编辑的数据网格组合框值

时间:2016-09-12 15:33:28

标签: jquery json combobox jquery-easyui

我正在尝试在可编辑数据网格中显示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: -

Present Output

但是这里显示的值不是像[object Object]

那样显示

0 个答案:

没有答案