Why donate
API Explorer
Option Group

The QOptionGroup component is a helper component that allows you better control for grouping binary (on or off, true or false, 1 or 0) form input components like checkboxes, radios or toggles. A good use for this component is for offering a set of options or settings to turn on and off.

Loading QOptionGroup API...

Usage

Standard

Standard


With QCheckbox or QToggle

With checkboxes


WARNING

The model for checkboxes/toggles must be an array.

With toggles


Using label slots
v2.2+

There are two types of slots. A generic one (label) which applies to all options, unless a more specific index-based one is used (label-N where N is the 0-based index of the option). Both types of slots receive the respective option as parameter.

Notice how we use the specific label slot for first option (option at index 0) and we also add a QTooltip.

Label slots


With labels on left side

With option labels on the left side


Inline

Inline


Dense

Dense and inline


Disable

Disabled


TIP

The objects within the options array can hold any of the props found in QToggle, QCheckbox or QRadio for instance disable or leftLabel. See below for an example.

Disable Certain Options

Disable Certain Options


Custom Label, Value and Disable props
v2.17+

By default, QOptionGroup looks at label, value, disable props of each option from the options array Objects. But you can override those:

Custom Label, Value and Disable props


Force dark mode

Force dark mode


Native form submit

When dealing with a native form which has an action and a method (eg. when using Quasar with ASP.NET controllers), you need to specify the name property on QOptionGroup, otherwise formData will not contain it (if it should) - all value are converted to string (native behaviour, so do not use Object values):

Native form