|
本帖最后由 小号工作 于 2013-4-8 10:58 编辑
说明,这个问题导致大家想要浏览基本功能出现了障碍,但是论坛提供的在线演示版里是好的,也就是说新版V3发布后,没有这个问题,我看到大家都在改jar包,想要了解结构专门修改jar包的略过,仅想跳过这个BUG正常选角色看功能的,我这有个简单的jsp页面调整方法:
找到 webpage/system/user/user.jsp 页面
在角色choose标签那里 换上这个代码:
<a href="#" class="easyui-linkbutton" plain="true" icon="icon-choose">选择</a>
<a href="#" class="easyui-linkbutton" plain="true" icon="icon-redo">清空</a>
并且增加js方法:
<script type="text/javascript">
function openDialog(){
$.dialog({content: 'url:userController.do?roles',zIndex: 9999,title: '角色列表',lock : true,width :400,height :350,left :'85%',top :'65%',opacity : 0.4,button : [ {name : '确认',callback : function() {iframe = this.iframe.contentWindow;var roleName=iframe.getroleListSelections('roleName'); $('#roleName').val(roleName);var id =iframe.getroleListSelections('id');if (id!== undefined &&id!=""){$('#roleid').val(id);}},focus : true}, {name : '取消',callback : function() {}} ]});
}
function clearAll(){$('#roleName').val("");$('#roleid').val("");}
</script>
看到有朋友还是不出来,我不知道为什么,我把我的user.jsp页面发上来,然后大家随意折腾吧
|
|