easyui动态生成combobox并渲染后,设置默认选中项,之后取控件的值都是同一个

easyui动态生成combobox并渲染后,设置默认选中项,之后取控件的值都是同一个,第1张

这不是标准的easyui的combobox的渲染方式,最好参照API的加载数据一段来,不要生拼html,渲染不一定生效,可以试试$('#控件ID')combobox('reload'); 如果不行最好还是按照API的方式来

设置好它的两个属性即可,例如:

editor: { type: 'validatebox', options: { required: true} }$("#dd")datagrid({columns: [[

//显示的列                

{field: 'ID', title: '编号', width: 100, sortable: true, checkbox: true },    field: 'UserName', title: '用户名', width: 100, sortable: true,            editor: { type: 'validatebox', options: { required: true} }                 },                  

{ field: 'RealName', title: '真实名称', width: 100,                      editor: { type: 'validatebox', options: { required: true} }                  },                   { field: 'Email', title: '邮箱', width: 100,                       editor: { type: 'validatebox', options: { required: true} }                   }                   ]]

//});

你好!!

jquery easyui datagrid中的 reload 不是这样用的~

1首先你需要设置datagrid的onLoadSuccess

$('#dg')datagrid({onLoadSuccess : function(data){

    $('#dg')datagrid('selectRow',3);

}});

2onLoadSuccess如果是通过 data-options的方式设置的没问题,如果通过js脚本设置的话,

需要保证在loadData之前绑定这个事件函数,类似下面这样

$('#dg')datagrid({"onLoadSuccess":function(data){

    $(this)datagrid('selectRow',3);

}})datagrid("loadData",XXXXX);

否则在加载数据之后,可能不会去执行onLoadSuccess里面的代码;

3reload方法重新加载当前页面数据

$('#dg')datagrid("reload");

至于loading一只显示,说明你的数据应该没有加载成功吧··

希望对你有帮助!!

以上就是关于easyui动态生成combobox并渲染后,设置默认选中项,之后取控件的值都是同一个全部的内容,包括:easyui动态生成combobox并渲染后,设置默认选中项,之后取控件的值都是同一个、jquery easyUI中 editor的方法、jquery easyui datagrid 加载成功,选中某一行等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9493421.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存