All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cz.datalite.zk.components.datebox.DLDatebox Maven / Gradle / Ivy

Go to download

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