Difference between revisions of "Basic toggle"

From ImpVis Wiki
Jump to navigation Jump to search
(corrected which props it uses)
Line 11: Line 11:


=== Props ===
=== Props ===
Name: initialMode
Name: value


Type: Boolean
Type: Boolean


Default: true
Default: false


Description: Setting the initial toggle boolean
Description: Setting the initial toggle boolean
Name: toggleDisabled
Type: Boolean
Default: false
Description: Disable the input
=== Events ===
=== Events ===
Name: toggleswitched
Name: toggleswitched

Revision as of 13:58, 7 July 2021

This page is a child of the Toggles page.

The basic toggle component appears as a button that slides upon clicking and serves to allow user to pick between two choices. This component can be called using the iv-toggle-basic tag.

ToggleBasic.png

Technical information

It is possible to disable the toggle.

Props

Name: value

Type: Boolean

Default: false

Description: Setting the initial toggle boolean

Events

Name: toggleswitched

Description: Emitted when the toggle is clicked

Value: toggleMode

Usage

You may change the default mode by setting the initialMode prop to "false". To disable the toggle, set the toggleDisabled prop to "true".

ToggleBasicTrueMode.png

ToggleBasicFalseMode.png

ToggleBasicDisabled.png

Design choice

The blue button is chosen to fit in the general ImpVis blue while the grey button (toggle disabled mode) gives a sense of inactive.