Bandinfo"

From Documentation
(One intermediate revision by one other user not shown)
Line 2: Line 2:
  
 
= Bandinfo =
 
= Bandinfo =
 
+
Deprecated, please use [http://blog.zkoss.org/index.php/2015/01/13/introducing-new-zk-addon-zk-timeline/ new Timeline instead]
*Demonstration:  [http://www.zkoss.org/zkdemo/userguide/#m9 SIMILE Timeline]
 
*Java API: N/A
 
*JavaScript API:  N/A
 
  
 
= Employment/Purpose =
 
= Employment/Purpose =
Line 32: Line 29:
 
<source lang="xml" >
 
<source lang="xml" >
 
<data>
 
<data>
<event start="Oct 1 2008 00:00:00 GMT" end="Oct 1 2008 00:00:00 GMT"
+
    <event start="Oct 1 2010 00:00:00 GMT" end="Oct 1 2010 00:00:00 GMT"
title="Friend's wedding">
+
        title="Friend's wedding">
I'm not sure precisely when my friend's wedding is.
+
        I'm not sure precisely when my friend's wedding is.
 
         </event>
 
         </event>
<event start="Oct 15 2008 11:00:00 GMT" end="Nov 1 2008 09:00:00 GMT"
+
    <event start="Oct 15 2010 11:00:00 GMT" end="Nov 1 2010 09:00:00 GMT"
isDuration="true" title="Writing Style Guide" image="http://simile.mit.edu/images/csail-logo.gif">
+
        isDuration="true" title="Writing Style Guide" image="http://simile.mit.edu/images/csail-logo.gif">
A few days to write some documentation for
+
        A few days to write some documentation for
<a href="http://www.zkoss.org/doc/styleguide">Timeline</a>
+
        <a href="http://www.zkoss.org/doc/styleguide">Timeline</a>
.
+
        .
</event>
+
    </event>
<event start="Oct 23 2008 06:12:33 GMT" title="Trip to New York"
+
    <event start="Oct 23 2010 06:12:33 GMT" title="Trip to New York"
link="http://www.priceline.com/">
+
        link="http://www.priceline.com/">
Happy New Year !
+
        Happy New Year !
</event>
+
    </event>
 
</data>
 
</data>
 
</source>
 
</source>
  
=Supported events=
+
=Supported Events=
  
 
{| border="1" | width="100%"
 
{| border="1" | width="100%"
Line 56: Line 53:
 
|-
 
|-
 
| <center><tt>onOccurEventSelect</tt></center>
 
| <center><tt>onOccurEventSelect</tt></center>
| [[ZK Component Reference/Events/OccurEventSelectEvent | OccurEventSelectEvent ]]
+
| '''Event:''' [[ZK Component Reference/Events/OccurEventSelectEvent | OccurEventSelectEvent ]]
 
+
Denotes the Occur Event in the bandinfo component has been clicked by the user.
<tt>'''Description:''' </tt>Denotes the Occur Event in the bandinfo component has been clicked by the user.
 
 
 
 
|-
 
|-
 
| <center><tt>onBandScroll</tt></center>
 
| <center><tt>onBandScroll</tt></center>
| [[ZK Component Reference/Events/BandScrollEvent | BandScrollEvent ]]
+
| '''Event:''' [[ZK Component Reference/Events/BandScrollEvent | BandScrollEvent ]]
 
+
Denotes  the bandinfo component has been moved by the user.
<tt>'''Description:''' </tt>Denotes  the bandinfo component has been moved by the user.
 
 
 
 
|}
 
|}
 +
*Inherited Supported Events: [[ZK_Component_Reference/Base_Components/XulElement#Supported_Events | XulElement]]
  
 
=Supported Children=
 
=Supported Children=
Line 72: Line 66:
 
  *[[ZK_Component_Reference/Diagrams_and_Reports/Timeline/Hotzone | Hotzone]]
 
  *[[ZK_Component_Reference/Diagrams_and_Reports/Timeline/Hotzone | Hotzone]]
  
=Use cases=
+
=Use Cases=
  
[[ZK_Component_Reference/Diagrams_and_Reports/Timeline#Use_cases | Timeline ]]
+
[[ZK_Component_Reference/Diagrams_and_Reports/Timeline#Use_Cases | Timeline ]]
  
 
=Version History=
 
=Version History=
 
+
{{LastUpdated}}
 
{| border='1px' | width="100%"
 
{| border='1px' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content

Revision as of 02:17, 30 January 2015

Bandinfo

Deprecated, please use new Timeline instead

Employment/Purpose

Defines the bandinfo of a timeline.

A band layer is the main building block for timeline and it's the object that is responsible for painting the band itself.

Example

ZKCompRef Timeline.png

<timeline height="300px" width="100%">
	<bandinfo width="70%" id="b1" intervalUnit="month"
		intervalPixels="100" eventSourceUrl="misc/timeline_ex1.xml">
	</bandinfo>
	<bandinfo width="30%" intervalUnit="year" intervalPixels="200"
		syncWith="b1" eventSourceUrl="misc/timeline_ex1.xml">
	</bandinfo>
</timeline>


timeline_ex1.xml

<data>
    <event start="Oct 1 2010 00:00:00 GMT" end="Oct 1 2010 00:00:00 GMT"
        title="Friend's wedding">
        I'm not sure precisely when my friend's wedding is.
        </event>
    <event start="Oct 15 2010 11:00:00 GMT" end="Nov 1 2010 09:00:00 GMT"
        isDuration="true" title="Writing Style Guide" image="http://simile.mit.edu/images/csail-logo.gif">
        A few days to write some documentation for
        <a href="http://www.zkoss.org/doc/styleguide">Timeline</a>
        .
    </event>
    <event start="Oct 23 2010 06:12:33 GMT" title="Trip to New York"
        link="http://www.priceline.com/">
        Happy New Year !
    </event>
</data>

Supported Events

Name
Event Type
onOccurEventSelect
Event: OccurEventSelectEvent

Denotes the Occur Event in the bandinfo component has been clicked by the user.

onBandScroll
Event: BandScrollEvent

Denotes the bandinfo component has been moved by the user.

Supported Children

* Hotzone

Use Cases

Timeline

Version History

Last Update : 2015/01/30


Version Date Content
     



Last Update : 2015/01/30

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.