本文主要是介绍easyui combotree下拉面板宽度自适应,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1)修改css文件:/CWGLXT/src/main/webapp/comm/easyUI/themes/bootstrap/easyui.css
注释该样式
2)增加属性和事件
$('#fillorgid').combotree({
url: sname+"/OrgInfomanageController/getOrgTreeDataByIds",
method: 'post',
value:'${expenseClaim.fillorgid}',
panelWidth:'auto',//内容自适应
editable:false,
onShowPanel:function(){//面板自适应
$(this).combobox('panel').width("auto");
}
})
这篇关于easyui combotree下拉面板宽度自适应的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!