⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 auxheader.java

📁 ZK 基础介绍 功能操作 模块 结合数据库操作
💻 JAVA
字号:
/* Auxheader.java{{IS_NOTE	Purpose:			Description:			History:		Wed Oct 24 10:07:12     2007, Created by tomyeh}}IS_NOTECopyright (C) 2007 Potix Corporation. All Rights Reserved.{{IS_RIGHT	This program is distributed under GPL Version 2.0 in the hope that	it will be useful, but WITHOUT ANY WARRANTY.}}IS_RIGHT*/package org.zkoss.zul;import org.zkoss.xml.HTMLs;import org.zkoss.zk.ui.Component;import org.zkoss.zk.ui.Execution;import org.zkoss.zk.ui.Executions;import org.zkoss.zk.ui.UiException;import org.zkoss.zk.ui.WrongValueException;import org.zkoss.zul.impl.HeaderElement;/** * An auxiliary header. * * @author tomyeh * @since 3.0.0 */public class Auxheader extends HeaderElement {	private int _colspan = 1, _rowspan = 1;	public Auxheader() {	}	public Auxheader(String label) {		setLabel(label);	}	public Auxheader(String label, String src) {		setLabel(label);		setImage(src);	}	/** Returns number of columns to span this header.	 * Default: 1.	 */	public int getColspan() {		return _colspan;	}	/** Sets the number of columns to span this header.	 * <p>It is the same as the colspan attribute of HTML TD tag.	 */	public void setColspan(int colspan) throws WrongValueException {		if (colspan <= 0)			throw new WrongValueException("Positive only");		if (_colspan != colspan) {			_colspan = colspan;			final Execution exec = Executions.getCurrent();			if (exec != null && exec.isExplorer())				invalidate();			else smartUpdate("colspan", Integer.toString(_colspan));		}	}	/** Returns number of rows to span this header.	 * Default: 1.	 */	public int getRowspan() {		return _rowspan;	}	/** Sets the number of rows to span this header.	 * <p>It is the same as the rowspan attribute of HTML TD tag.	 */	public void setRowspan(int rowspan) throws WrongValueException {		if (rowspan <= 0)			throw new WrongValueException("Positive only");		if (_rowspan != rowspan) {			_rowspan = rowspan;			final Execution exec = Executions.getCurrent();			if (exec != null && exec.isExplorer())				invalidate();			else smartUpdate("rowspan", Integer.toString(_rowspan));		}	}	//super//	public String getOuterAttrs() {		final String attrs = super.getOuterAttrs();		final String clkattrs = getAllOnClickAttrs(false);		if (clkattrs == null && _colspan == 1 && _rowspan == 1)			return attrs;		final StringBuffer sb = new StringBuffer(80).append(attrs);		if (clkattrs != null) sb.append(clkattrs);		if (_colspan != 1) HTMLs.appendAttribute(sb, "colspan", _colspan);		if (_rowspan != 1) HTMLs.appendAttribute(sb, "rowspan", _rowspan);		return sb.toString();	}	protected void invalidateWhole() {		Component p = getParent();		if (p != null) {			p = p.getParent();			if (p != null)				p.invalidate();		}	}	//Component//	public void setParent(Component parent) {		if (parent != null && !(parent instanceof Auxhead))			throw new UiException("Wrong parent: "+parent);		super.setParent(parent);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -