url: '../../../../Function/Instance/Common/PartyBiz.asmx/GetOrgList',
type: 'POST',
data: { OrgType:1 },
dataType: 'html',
async: false,
success: function (res) {
var data = eval('(' + res + ')');
tree= $("#txtDW").ligerComboBox({
width: 180,
selectBoxWidth: 220,
selectBoxHeight: 200,textField : 'text',valueField :'id',treeLeafOnly:false,
tree: { data: data.Org,
idFieldName :'id',
parentIDFieldName :'pid',
checkBox : false
}
});
// $("#txtDW").ligerComboBox({
// onBeforeOpen: f_selectContact,width:150
});
注:此法下拉树不可折叠!!
原文链接:https://www.f2er.com/ajax/166914.html