Package org.zkoss.ztl

Examples of org.zkoss.ztl.JQuery.eq()


     * @return A JQuery object of column header.
     */
    public JQuery getColumnHeader(int col) {
      if (isIE6() || isIE7()) {
        JQuery cols =  jq("div.zstopcell");
        return cols.eq(col);
      }
        return jq("div.zstopcell[z\\\\.c=\"" + col + "\"] div");
    }
   
    /**
 
View Full Code Here


     * @return A JQuery object of row header.
     */
    public JQuery getRowHeader(int row) {
      if (isIE6() || isIE7()) {
        JQuery rows = jq("div.zsleftcell");
        return rows.eq(row);
      }
       return jq("div.zsleftcell[z\\\\.r=\"" + row + "\"] div");
    }
   
    public String getCellText(int col, int row) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.