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