Package org.zkoss.zss.app.zul.ctrl

Examples of org.zkoss.zss.app.zul.ctrl.SSRectCellStyle


        //use set setHighlight null can cancel selection, but need to re-store selection when select same sheet again
        spreadsheet.setHighlight(null);
       
        if (isOpen) {
          getCellStyleContext().doTargetChange(
              new SSRectCellStyle(Utils.getOrCreateCell(spreadsheet.getSelectedSheet(), 0, 0), spreadsheet));
//          syncAutoFilterStatus();
        }
      }
    });
View Full Code Here


    Rect seld =  spreadsheet.getSelection();
    int row = seld.getTop();
    int col = seld.getLeft();
    Cell cell = Utils.getCell(seldSheet, row, col);
    if (cell != null) {
      getCellStyleContext().doTargetChange(new SSRectCellStyle(cell, spreadsheet));
    }
  }
View Full Code Here

TOP

Related Classes of org.zkoss.zss.app.zul.ctrl.SSRectCellStyle

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.