上一页 1 ··· 15 16 17 18 19
摘要: --指定表列行单元不可编辑 // 锁定表格、行、列、单元 table.getStyleAttributes().getProtection().setLocked(true); row.getStyleAttributes().getProtection().setLocked(true); col 阅读全文
posted @ 2019-06-02 18:11 一条有梦想的海洋咸鱼 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 如何设置树的深度(即树总共有几级) // 设置树的深度为3,即树包括0、1、2三级结点 table.getTreeColumn().setDepth(3); 如何设置树的方向 树的方向包括两种:自上向下(即根结点在上方)和自下向上(即根结点在下方)。 // 设置树的方向为自上向下 table.get 阅读全文
posted @ 2019-06-02 18:07 一条有梦想的海洋咸鱼 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 如何指定是否要进行数据分组以及对哪些列进行分组 // 指定KDTable要进行数据分组 table.getGroupManager().setGroup(true); // 指明要对0、1、2三列进行分组 table.getColumn(0).setGroup(true); table.getCol 阅读全文
posted @ 2019-06-02 18:00 一条有梦想的海洋咸鱼 阅读(602) 评论(0) 推荐(0) 编辑
摘要: this.kdtEntrys_detailPanel.setTitle("物件内容"); KDContainer kdtEntrys_Container = (KDContainer) ((KDPanel) this.kdtEntrys_detailPanel.getComponent(0)).ge 阅读全文
posted @ 2019-06-02 17:59 一条有梦想的海洋咸鱼 阅读(492) 评论(0) 推荐(0) 编辑
摘要: protected KDWorkButton btnFileManage; protected ActionFileManage actionFileManage = null; public void onLoad() throws Exception { super.onLoad(); this 阅读全文
posted @ 2019-06-02 17:29 一条有梦想的海洋咸鱼 阅读(449) 评论(0) 推荐(0) 编辑
摘要: EditUI > public boolean checkBeforeWindowClosing() { boolean b = super.checkBeforeWindowClosing(); if ((this.editData != null) && (this.editData.getId 阅读全文
posted @ 2019-06-02 17:28 一条有梦想的海洋咸鱼 阅读(454) 评论(0) 推荐(0) 编辑
摘要: //查看是否有相关权限 boolean hasAllotPermission= PermissionFactory.getRemoteInstance().hasFunctionPermission(new ObjectUuidPK(userId),new ObjectUuidPK(orgId),p 阅读全文
posted @ 2019-06-02 17:24 一条有梦想的海洋咸鱼 阅读(515) 评论(0) 推荐(0) 编辑
摘要: import java.sql.ResultSetMetaData; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import com.kingdee.bos.BOSExceptio 阅读全文
posted @ 2019-06-02 17:20 一条有梦想的海洋咸鱼 阅读(671) 评论(0) 推荐(0) 编辑
摘要: ctrl+shift+c 获取分录行的id ctrl+alt+[ 获取任意界面操作的信息 阅读全文
posted @ 2019-06-02 17:17 一条有梦想的海洋咸鱼 阅读(644) 评论(0) 推荐(0) 编辑
摘要: EAS实例启动报系统中存在非法组件,实例启动失败: 组件检查机制,要求除了 $EAS_HOME eas\server\lib; $EAS_HOME \eas\server\deploy\fileserver.ear\easWebClient\lib; $EAS_HOME eas\server\met 阅读全文
posted @ 2019-06-02 17:14 一条有梦想的海洋咸鱼 阅读(542) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19