欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

项目中使用easyui框架,常见的用法(慢慢整理)

程序员文章站 2022-04-08 16:47:41
...

1.下拉框加载数据

$("#uom").combobox({  
 data : result,//获取要显示的json数据  
 valueField: 'baseUOM',  
 textField: 'baseUOM', 
 onLoadSuccess:function(){//默认选中某个值显示
   $("#uom").combobox('select','EA');
 }
}); 


2.设置下拉框自动高度

<input class="easyui-combobox" type="text" name="uom" id="uom" editable="false" data-options="panelHeight:'auto'"/>



相关标签: datagrid