Timer
From Documentation
Revision as of 08:21, 14 July 2010 by Maya001122 (talk | contribs) (Created page with '{{ZKDevelopersGuidePageHeader}} A timer is an invisible component used to send the <tt>onTimer</tt> event to the server at a specified time or period. You can control a timer by…')
This documentation is for an older version of ZK. For the latest one, please click here.
A timer is an invisible component used to send the onTimer event to the server at a specified time or period. You can control a timer by using the start and stop methods.
<window title="Timer demo" border="normal">
<label id="now"/>
<timer id="timer" delay="1000" repeats="true"
onTimer="now.setValue(new Date().toString())"/>
<separator bar="true"/>
<button label="Stops timer" onClick="timer.stop()"/>
<button label="Starts timer" onClick="timer.start()"/>
</window>