Control API for Item List (itemList)

A static list that appears in the interface. The list can be displayed as bulleted or numbered (ordered) list. An element in an itemList is called listItem.

  • id
    Identification name of the itemList.
  • ordered
    A boolean value that defines if the list is displayed as bulleted (ordered="false") or numbered list (ordered="true").
attribute req. values default case sens. JSP taglib classlib
id yes String none yes id="ImportantItems"  
ordered no FALSE
TRUE
FALSE yes ordered="TRUE" setOrdered(true)

 

listItem

Defines the items in the itemList. A listItem can be built with any control (checkbox, image, textView etc.) and one listItem can contain more then one control.

Example
<hbj:itemList
           id="ImportantItems"
           ordered="true"
           >

           <hbj:listItem>
               <hbj:textView text="Introduction" />
           </hbj:listItem>

           <hbj:listItem>
               <hbj:textView text="Definitions"  />
           </hbj:listItem>

           <hbj:listItem>
               <hbj:textView text="Main Part"  />
           </hbj:listItem>

           <hbj:listItem>
               <hbj:textView text="Conclusion"  />
           </hbj:listItem>

</hbj:itemList>
 
Result