jeecg页面属性 扩展参数怎么使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jeecg页面属性 扩展参数怎么使用相关的知识,希望对你有一定的参考价值。
参考技术A jeecg3.5中实现从一个页面跳转到另一个页面 jeecg3.5中实现从一个页面跳转到另一个页面jeecg 查看 页面 父子表 横向滚动条效果 官方被禁用
关键代码注释替换
if (tabs) {
//增加width属性,fit属性之前写死,改为由页面设定,不填默认true
sb.append("<div id=\\"" + id + "\\" tabPosition=\\"" + tabPosition + "\\" border=flase style=\\"margin:0px;padding:0px;overflow-x:hidden;width:"+oConvertUtils.getString(width, "auto")+";\\" class=\\"easyui-tabs\\" fit=\\""+fit+"\\">");
if (!iframe) {
for (Tab tab : tabList) {
if (tab.getHref() != null) {
//sb.append("<div title=\\"" + tab.getTitle() + "\\" " + (tab.getIcon() != null ? ("iconCls=\\"" + tab.getIcon() + "\\" ") : "") + " href=\\"" + tab.getHref() + "\\" style=\\"margin:0px;padding:0px;overflow-x:hidden;overflow-y:auto;width=auto;\\"></div>");
sb.append("<div title=\\"" + tab.getTitle() + "\\" " + (tab.getIcon() != null ? ("iconCls=\\"" + tab.getIcon() + "\\" ") : "") + " href=\\"" + tab.getHref() + "\\" style=\\"margin:0px;padding:0px;overflow-y:auto;overflow-x:scroll;width=auto;\\"></div>");
} else {
sb.append("<div " + (tab.getIcon() != null ? ("iconCls=\\"" + tab.getIcon() + "\\" ") : "") + " title=\\"" + tab.getTitle() + "\\" style=\\"margin:0px;padding:0px;overflow-x:hidden;overflow-y:auto;width=auto;\\">");
sb.append("<iframe id=\\""+tab.getId()+"\\" scrolling=\\"no\\" frameborder=\\"0\\" src=\\""+tab.getIframe()+"\\" width=\\""+oConvertUtils.getString(tab.getWidth(), "100%")+"\\" height=\\""+oConvertUtils.getString(tab.getHeigth(), "99.5%")+"\\"></iframe>");
sb.append("</div>");
}
}
}
sb.append("</div>");
}
效果
以上是关于jeecg页面属性 扩展参数怎么使用的主要内容,如果未能解决你的问题,请参考以下文章
帆软报表和jeecg的进一步整合--ajax给后台传递map类型的参数