Package org.zkoss.zss.ui.event

Examples of org.zkoss.zss.ui.event.CellMouseEvent


    }else if("dbc".equals(type)){
      type = org.zkoss.zss.ui.event.Events.ON_CELL_DOUBLE_CLICK;
    }else {
      throw new UiException("unknow type : "+type);
    }
    CellMouseEvent event = new CellMouseEvent(type, comp,shx,shy,key, sheet,row,col,mx,my);
    Events.postEvent(event);
   
  }
View Full Code Here


      Events.postEvent(new FilterMouseEvent(type, comp, shx, shy, key, sheet, row, col, mx, my, field));
    } else if (org.zkoss.zss.ui.event.Events.ON_VALIDATE_DROP.equals(type)) {
      int dvindex = (Integer) data.get("field");
      Events.postEvent(new FilterMouseEvent(type, comp, shx, shy, key, sheet, row, col, mx, my, dvindex));
    } else {
      Events.postEvent(new CellMouseEvent(type, comp, shx, shy, key, sheet, row, col, mx, my));
    }
  }
View Full Code Here

TOP

Related Classes of org.zkoss.zss.ui.event.CellMouseEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.