码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-04-21 17:32:23      阅读:333      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!