Toggle

Arguments

Name

Type

Value

Description

type

string

radio

The type of setting

name

string

{field_name}

The unique name will be used in template

label

string

(optional)

The label that appears above of the setting field.

description

string

(optional)

The description that appears above under of the setting field.

tooltip

string

(optional)

The long description that appears on the tooltip when hover on.

value

string

[yes|no]

The default value will be used for the first time.

options

object

(optional)

{

label: 'yes|no'

}

on

object

(optional)

Add listener events for setting field (Supported all event )

Code example

@schema
{
	"name"		: "Toggle",
	"author"	: "LayoutHub",
	"website"	: "https://www.LayoutHub.com"
}
@endschema


<div class="sample-demo">
	
	<p>The static display value: @print(section.settings.toggle)</p>
	
	@include('comp')
	
</div>

How it works

Last updated