1. 程式人生 > >easyui combotree下拉麵板寬度自適應

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");
        }


})