在easyUI联动加载下拉框的时候为什么 只能显示 不能选择下拉框的值 我绑定的id 是唯一的啊 !!求解!!

function BindEnergy() {
var parm = {};
parm.type = true;
$("#txtName").combobox({
url: '/EnergyConsum/GetEnergyInfo',//绑定下拉列表中的值
editable: false,
queryParams: parm, //异步查询的参数
valueField: 'code',
textField: 'ename',
panelHeight: 'auto',
onLoadSuccess: function (param) {
if (param.length > 0)
$("#txtName").combobox('select', param[0].code)
},
onSelect: function (record) {
var pram = {};
pram.name =record.code;
$("#txtType").combobox({
url: '/EnergyConsum/GetMeasureById',
editable: false,
queryParams: pram,
valueFiled: 'MNO',
textField: 'MNAME',
panelHeight: 'auto'

})
}
})
}
var width = $(window).width()-80;
var height = $(window).height()-120;
stView_layout = $('差态#stView_layout'拿如).layout({
width: width,
height: height
});
station_view = $('#stationView').window({
title: '测消庆启站导航',
left:50,
top:80,
width: width,
modal: false,
shadow: false,
closed: true,
height: height,
onResize:function(w,h){
if(stView_treegrid){
stView_treegrid.treegrid({
width:w-20,
height:h-260
});
}
}
});