Checkboxes

The checkbox element is a popular element to allow users to:

  • select / unselect an option,
  • toggle an option on or off.

By default, it comes as a square checkbox with a light background color, a blue checkmark icon, and borders when the input is checked:

Checkbox from the toolkit

How it works

When you drag-and-drop a checkbox on a WeWeb page, you will notice that there is one Checkbox component that contains:

  • a flexbox, and
  • a checkbox input.

Checkbox structure

It's important to understand what these 3 items do and how they work together:

  • the flexbox,
  • the input, and
  • the component as a whole.

Checkbox flexbox

The flexbox is helpful if you need to display a information next to the input for example.

In the Settings tab of the component, you can turn the Embedded container setting On or Off and decide where you want to display it:

Checkbox with or without text

WARNING

Turning the Embedded container to Off deletes the container completely.

If you turn the Embedded container to Off and turn it back on to On, you will not be able to retrieve what you had in the container before changing the setting to Off.

You will need to start from scratch.

Checkbox input

The checkbox input is the element on which the user will click to toggle the option on or off.

By default, the checkbox input comes with two states (Default and checked):

Checkbox states

When the user clicks on the checkbox input, it will change the state of the input.

You can style the checkbox input in default or checked state (but more on that later).

Checkbox component

The checkbox component contains both the checkbox input and the flexbox container if Embedded container is switched On.

It comes with an internal variable:

  • when the value is false, the checkbox input will be displayed in its Default state
  • when the value is true, the checkbox input will be displayed in its checked state

Checkbox component variable

In Settings of the checkbox component, you can:

  • set or bind an initial value (which must be true or false),
  • decide if the checkbox input is required,
  • decide if the checkbox input is read-only.

In the example below, you can see that we set the initial value to true by switching the Init value to On:

Checkbox specific settings

TIP

To test that your checkbox is behaving as expected, you will need to switch to Preview mode.

In the example below, the checkbox appears unchecked on the page despite:

  • the Init value being set to On, and
  • the component variable being true as a result

It's only when we move away from the Editing view that we can see the checkbox in action:

Checkbox initial value

Style the checkbox

To style the checkbox itself, you will need to go on the checkbox element that's inside the checkbox component.

Once you've made sure you are on the checkbox input itself and not the parent element, you can style the checkbox as you would any other element:

Styling the checkbox

Different state, different style

In the example above, you can see us styling the checkbox when in its Default state.

You can have a different style when the checkbox is in the checked state:

Styling the checkbox in checked state

Last Updated:
Contributors: Joyce Kettering