`
hujinlongman
  • 浏览: 37888 次
  • 性别: Icon_minigender_1
  • 来自: 南昌
文章分类
社区版块
存档分类
最新评论
文章列表
ISQLExecutor sqlExe = SQLExecutorFactory.getRemoteInstance(sql); IRowSet rs = sqlExe.executeSQL();
// 创建列和表头 ... // 指定虚模式分页模式 table.getDataRequestManager().setDataRequestMode(KDTDataRequestManager.VIRTUAL_MODE_PAGE); // 设置总行数为500,可以不指定总行数 table.setRowCount(500); // 指定绑定的内容 queryName是query对象的名称,fieldNameArray是字符串数组,分别代表每一列对应的字段名称 table.putBindContents(queryName, fieldNameArra ...
父窗体action里执行如下代码 UIContext context = new UIContext(this); IUIWindow window = UIFactory.createUIFactory(UIFactoryName.MODEL) .create("com.kingdee.eas.custom.hospital.client.****UI", context, null, null); window.show(); 子窗体获取父窗体代码 ****UI fatherUI = (****UI) this.getUIContext().get(&q ...
怎么才算好的源码分析呢?当然我这个肯定不算。我想大概分为几个层面吧,写写注释那算最基本的了,写写要点思路和难点,算是还不错拉,再难的就是跳出源码举一反三,形成自己的一套思路吧。好好努力吧。   这次针对 ...
描述:在底部添加版权信息等 1.找到templates/default/bottom.htm 修改为: </td> </tr> <tr> <td align="center"> <#if session?exists && session.isAdmin()><span class="gen"><a id="adminpanel" href='${JForumContext.encodeURL("/admBase/ ...
jforum实现了自己的MVC,现在就简单解释一下他的流程,方便二次开发的朋友添加页面 示例URL:http://localhost:8080/posts/list/2.page 这是一个显示帖子的URL 首先我们看/posts/list/2.page 我们这样理解这个URL/模型/处理方法/参数 然后找到WEB-INF/config/modulesMapping.properties 找到: posts = net.jforum.view.forum.PostAction 解释:posts就是我们URL的posts,即模型,他的实现在net.jforum.view.forum.Post ...
Global site tag (gtag.js) - Google Analytics