首页 > 其他 > 详细

EAS table 新增、删除、单元格修改事件监听

时间:2015-04-21 17:31:37      阅读:274      评论:0      收藏:0      [点我收藏+]

protected void initListener() {
  super.initListener();
  beforeListener = new BeforeActionListener(){

    @Override
    public void beforeAction(BeforeActionEvent event) {
      if(event.getType()==BeforeActionEvent.ACTION_ADD_ROW||event.getType()==BeforeActionEvent.ACTION_COPY){
        if(CostCenterSetingEditUI.this.prmtcompany.getValue()==null){
          MsgBox.showWarning("公司不可为空!");
          event.setCancel(true);
        }
      }
    }
  };
  this.kdtEntrys.setBeforeAction(beforeListener);

 

  

  kdtEntrys.addKDTEditListener(new KDTEditAdapter()
  {
    public void editStopped(KDTEditEvent e)
    {
      try
      {
        kdtEntrys_Changed(e.getRowIndex(), e.getColIndex());
      } catch (Exception exc)
      {
        handUIException(exc);
      }
    }
  });



}

EAS table 新增、删除、单元格修改事件监听

原文:http://www.cnblogs.com/cyhj/p/4444627.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!