在easyUI联动加载下拉框的时候为啥 只能显示 不能选择下拉框的值 我绑定的id 是唯一的啊 !!求解!!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在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 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
);
);追问
其实是我粗心 把单词写错了 不过还是谢谢你!!3QQQ !!
本回答被提问者和网友采纳WTM+LayUI实现组件一对多的联动
以上是关于在easyUI联动加载下拉框的时候为啥 只能显示 不能选择下拉框的值 我绑定的id 是唯一的啊 !!求解!!的主要内容,如果未能解决你的问题,请参考以下文章
java web开发下拉框联动显示,显示的数据市是数据库中获取 比如 省、市、地区,应该如何做?
easyui 下拉列表只能选中第一个,就是能看到下拉框的值,可是你选择那个它框框里都是第一个