cz.datalite.zk.components.datebox.DLDatebox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ZKComponents Show documentation
Show all versions of ZKComponents Show documentation
Other imporvements of basic ZK components - please check the documentation for each overriden component.
The newest version!
package cz.datalite.zk.components.datebox;
import org.zkoss.zul.Datebox;
/**
* ZK Datebox extensions.
*
* List of extensions:
*
* - Readonly on datebox should hide button as well.
*
* @author Jiri Bubnik
*/
public class DLDatebox extends Datebox {
/**
* Readonly on datebox should hide button as well.
*
* @param readonly
*/
@Override
public void setReadonly( final boolean readonly ) {
super.setReadonly( readonly );
setButtonVisible( !readonly );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy