组装树状结构文本框

组装树状结构文本框_第1张图片

 

 

 jsp代码===


监测类别:

产品类别:

 

js代码=======

//加载监测类别字典(添加)
$("#monitoringCategory").combotree({
url: '<%=basePath%>xyData/dict/LookupDictFid.do?fid=' + '213',
valueField: "id",
textField: "text",
lines: true,
required: true,
onBeforeExpand: function (node, param) {
$(this).tree('options').url = "<%=basePath %>xyData/dict/LookupDictFid.do?pid=" + node.id + "&fid=" + '213';
},
onBeforeSelect: function(node) {
if (!$(this).tree('isLeaf', node.target)) {
return false;
}
}

});

 

//加载产品类别字典(添加)
$("#productCategory").combotree({
url: '<%=basePath%>xyData/dict/LookupDictFid.do?fid=' + '214',
valueField: "id",
textField: "text",
lines: true,
required: false,
onBeforeExpand: function (node, param) {
$(this).tree('options').url = "<%=basePath %>xyData/dict/LookupDictFid.do?pid=" + node.id + "&fid=" + '214';
},
onBeforeSelect: function(node) {
if (!$(this).tree('isLeaf', node.target)) {
return false;
}
}
});

 

//修改==========

//加载监测类别字典(修改)
$("#monitoringCategory1").combotree({
url: '<%=basePath%>xyData/dict/findAllByFid.do?fid=' + '213',
valueField: "id",
textField: "text",
lines: true,
required: true,

loadFilter: function (data) {
return data;
},
onBeforeSelect: function(node) {
if (!$(this).tree('isLeaf', node.target)) {
return false;
}
}

});

 

 

//启用
$("#ProfessionMonitoring").combotree('enable');
//禁用
 $("#ProfessionMonitoring").combotree('disable');
//data-options
data-options="editable:false"
disabled boolean 定义是否禁用该字段

 

 

//给树状结构文本框赋值

$('#monitoringCategory1').combotree('setValue', result.msg.monitoringCategory);

你可能感兴趣的:(组装树状结构文本框)