jquery easyui combobox 高度自适应

data-options="required:true,editable:false,panelHeight:‘auto‘"  加上panelHeight:‘auto‘即可

列合并的情况

columns: [
[
{ field: ‘nj‘, title: ‘年级‘, width: 80, align: ‘center‘,rowspan:2 },
{ field: ‘bj‘, title: ‘班级‘, width: 80, align: ‘center‘,rowspan:2 },
{ title: ‘学生人数‘, width: 240, align: ‘center‘, colspan: 3 },
{ title: "民族", width: 160, align: "center", colspan: 2 },
{ title: "户口", width: 160, align: "center", colspan: 2 },
{ title: "住宿", width: 240, align: "center", colspan: 3 },
{ field: "tyNumbers", title: "团员", width: 80, align: "center",rowspan:2}
],[
{ field: ‘totalNumbers‘, title: ‘人数‘, width: 80, align: ‘center‘},
{ field: ‘boys‘, title: ‘男‘, width: 80, align: ‘center‘ },
{ field: ‘girls‘, title: ‘女‘, width: 80, align: ‘center‘ },
{ field: "han", title: "汉族", width: 80, align: "center" },
{ field: "ssmz", title: "少", width: 80, align: "center" },
{ field: "fn", title: "非农", width: 80, align: "center" },
{ field: "ny", title: "农", width: 80, align: "center" },
{ field: "zsTotalNumbers", title: "人数", width: 80, align: "center" },
{ field: "zsBoys", title: "男", width: 80, align: "center" },
{ field: "zsGirls", title: "女", width: 80, align: "center" }
]]

效果如下:

jquery easyui combobox 高度自适应

时间: 2024-10-13 22:52:21

jquery easyui combobox 高度自适应的相关文章

jquery easyui combobox 从指定位置开始模糊查询

$("#bzr").combobox({ url: "ClassSave.aspx?opt=bzr&bzr=<%=arrbj[2]%>", valueField: "value", textField: "text", mode: "local", filter: function (q, row) { var opts = $(this).combobox('options'); va

Jquery插件----TextArea高度自适应

textArea的高度自适应本来应该很简单的,只需要用js监听它的输入然后修改其高度即可,甚至对于ie只要用css(overflow:visible;)控制就可以了.但是同样会有兼容性问题,用一个jQuery插件来实现.代码如下: $.fn.extend({ textareaAutoHeight: function (options) { this._options = { minHeight: 0, maxHeight: 1000 } this.init = function () { for

jQuery EasyUI Combobox无法检索中文输入的问题

打开jquery.easyui.min.js, 给combo控件添加了一个input事件绑定,具体绑定的格式源代码就有,每个版本可能不同,不过应该都可以这么着: 在源文件中搜索“if(opts.editable){”,在其“}”前面加上绑定事件,绑定的内容就是把“{}”中源代码复制进去,绑定对象是其中一句“var q=_66c.val();”的“_66c”. 我添加的代码是:/**解决jQuery EasyUI Combo以及其继承者无法检索中文输入的问题**/_66c.bind("input&

JQuery EasyUI Combobox 实现省市二级联动菜单

//编辑修改或新增页面联动可以这样写 jQuery(function(){    // 省级     $('#province').combobox({         valueField:'itemvalue', //值字段         textField:'itemtext', //显示的字段         url:'/user/sort/province_list',         panelHeight:'auto',         required:true,       

jQuery解决iframe高度自适应代码

网上查了好多用着都不行,自己搞定了:在包含iframe的页面中加入以下脚本,基本思想是在iframe加载内容后重新设置高度,下面代码尽在IE6中用过,没在其他浏览器中测试. 代码如下: <script type="text/javascript"> <!-- $( function() { //iframe高度随内容自动调整 $('.main').load( function() { $(this).height($(this).contents().find(&qu

jQuery EasyUI combobox多选及赋值

1.多选属性multiple multiple:true多选 multiple:false单选 <input class="easyui-combobox" id="xgr" name="xgr" style="width:435px" url='../Source/Public/json.ashx?action=zhymch' data-options="valueField:'zhymch', textFi

JQuery EasyUI combobox动态添加option

<input id="select_city" name="select_city" class="easyui-combobox" style="width:435px" data-options="valueField:'id', textField:'text' > 方法一: var data, json; json='[{"id":1 , "text":&q

jquery easyui combobox

$("#select_Dic").combobox({                        url: "http://www.cnblogs.com/Ajax/sys/WebServiceBase.ashx?Method=GetRefItems", //获取所有私有域                        valueField: "Code",                        textField: "Na

jquery easyui Combobox 实现 两级联动

具体效果如下图: 关键代码: <tr> <td class="query-conditions-row_left" width="20%">科室:</td> <td> <input id="DepartmentId" style="width: 90%" panelHeight="150" class="easyui-combobox"