Easyui使用Dialog行内按钮布局
程序员文章站
2024-01-01 13:27:16
...
本文主要为大家带来一篇Easyui使用Dialog行内按钮布局的实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧,希望能帮助到大家。
JSP页面
<p class="easyui-layout" data-options="fit:true"> <p data-options="region:'north',split:false" > <p title="角色分配" > <table cellpadding="12" cellspacing="0" > <tr> <td >角色名称:</td> <td><input id="roleName" class="easyui-textbox" ></td> <td >角色功能:</td> <td> <select id="roleFun" class="easyui-combobox" data-options="editable:false,multiple:true,panelHeight:'400px'" ></select> <p id="roleFunPanel"> <ul id="roleFunTree" class="easyui-tree" data-options="animate: true,checkbox:true"> <li>线路列表1</li> <li>线路列表2</li> <li>线路列表3</li> </ul> </p> </td> <td > <a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="easyui-linkbutton" data-options="iconCls:'icon-add',plain:true" onclick="newAppendRole()">添加</a> </td> </tr> </table> <table id="tblRoleDetail" ></table> </p> </p> </p> <p id="editRoleDialogFrame"></p>
JS部分代码
var grid = $("#tblRoleDetail").datagrid({ border : false, striped : true, rownumbers : true, fitColumns : true, singleSelect : true, height: '90%', width: '100%', idField :'roleName', plain : true, fit : false, <span > </span> selectOnCheck:false, nowrap: true, onClickRow : tblRoleDetailOnClickRow , columns:[[ {field:'roleName',title:'角色名',width: '19%',align:'center'}, {field:'funId',title:'权限名称',width: '70%',align:'left', formatter: function(value,row,index){ return '<span title='+value+'>'+value+'</span>' } }, {field:'opt',title:'操作',width:'10%',align:'center', formatter:function(value,rec) { var btn1 = '<a class="editcls" onclick="newRoleEdit(\''+rec.roleName+'\')" href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" >编辑</a>'; var btn2 = '<a class="delecls" onclick="removeRole(\''+rec.roleName+'\')" href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" >删除</a>'; return btn1+btn2; } } ]], onLoadSuccess:function(data){ $('.editcls').linkbutton({text:'编辑',plain:true,iconCls:'icon-edit'}); $('.delecls').linkbutton({text:'删除',plain:true,iconCls:'icon-remove'}); $('#tblRoleDetail').datagrid('fixRowHeight'); //固定所有高度,避免行号和行数据错位 } });
效果图
相关推荐:
详解bootstrap3-dialog-master模态框用法
以上就是Easyui使用Dialog行内按钮布局的详细内容,更多请关注其它相关文章!
推荐阅读
-
Easyui使用Dialog行内按钮布局
-
使用Yii+easyui+ueditor编辑内容插入图片等按钮弹出框中没有文字显示
-
easyui div 上下布局 最大化按钮 隐藏标题
-
使用jquery-easyui的布局layout写后台管理页面的代码详解
-
使用Jquery EasyUI进行页面布局(代码教程)
-
DevExpress的图形按钮菜单栏控件WindowsUIButtonPanel的布局、使用和设置按钮的点击事件
-
easyui dialog 按钮居中
-
使用Yii+easyui+ueditor编辑内容插入图片等按钮弹出框中没有文字显示
-
jQuery前端框架easyui使用Dialog时bug处理_jquery
-
使用jquery-easyui的布局layout写后台管理页面的代码详解