Element: <oj-checkboxset>

Oracle® JavaScript Extension Toolkit (JET)
16.0.0

F83703-01

DOM Interface: CheckboxsetElement

Version:
  • 16.0.0
Since:
  • 0.6.0
.oj-checkboxset-input-end
Use this style class to order the checkbox at the end and the label text at the start, even if a theme has a different default order.
Example
<oj-checkboxset id="checkboxsetId" class="oj-checkboxset-input-end">
  <!-- Content -->
</oj-checkboxset>
.oj-checkboxset-input-start
Use this style class to order the checkbox at the start and label text at the end, even if a theme has a different default order.
Example
<oj-checkboxset id="checkboxsetId" class="oj-checkboxset-input-start">
  <!-- Content -->
</oj-checkboxset>
.oj-checkboxset-no-chrome
Use this style class if you don't want the chrome around the set.
Example
<oj-checkboxset id="checkboxsetId" class="oj-checkboxset-no-chrome">
  <!-- Content -->
</oj-checkboxset>
.oj-choice-direction-column
Use this style class to lay out the checkboxes in a column. This is the default.
Example
<oj-checkboxset id="checkboxsetId" class="oj-choice-direction-column">
  <!-- Content -->
</oj-checkboxset>
.oj-choice-direction-row
Use this style class to lay out the checkboxes in a row.
Example
<oj-checkboxset id="checkboxsetId" class="oj-choice-direction-row">
  <!-- Content -->
</oj-checkboxset>