Control API for Checkbox Group (checkboxGroup)

Places several checkboxes in tabular form. The setting of an individual checkbox is independent of other checkboxes - that is, more than one checkbox in a set can be checked at any given time.

  • columnCount
    Defines the amount of columns in which the checkbox items are devided.

    Example
    If the columnCount is set to 2 and you define 7 checkbox items the result is

  • id
    Identification name of the checkboxGroup.
attribute req. values default case sens. JSP taglib classlib
columnCount no String 1 - columnCount="2" setColumnCount(2)
id yes String none yes id="CPUCheckGroup"  

 

Example
<hbj:checkboxGroup
           id="CPUCheckGroup"
           columnCount="2"
           > 
  <hbj:checkbox
            id="CheckCPUStat"
            text="CPU status"
            key="chk_Stat"
            tooltip="Check CPU status"
            disabled="false"
            checked="true"
  />
  <hbj:checkbox
            id="CheckCPUUsuage"
            text="CPU usuage"
            key="chk_Use"
            tooltip="Actual CPU usuage"
            disabled="false"
            checked="false"
  />
  <hbj:checkbox
            id="CheckProc"
            text="Processes"
            key="chk_Process"
            tooltip="Show active processes"
            disabled="false"
            checked="false"
  />

  <hbj:checkbox
            id="CheckProc"
            text="Resources"
            key="chk_Res"
            tooltip="Available resources"
            disabled="false"
            checked="true"
  />

</hbj:checkboxGroup>
Result