Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Toggle Buttons

tneil edited this page Nov 6, 2012 · 12 revisions

Toggle Buttons

NOTE: Toggle Buttons are only supported with BlackBerry 10 styling

Toggle buttons are quite easy to use in bbUI. Simply add a <div> element with the data-bb-type="toggle" attribute and then specify your true/false wording by specifying a data-bb-on="On" and data-bb-off="Off" attribute. You can provide whatever text you like for these captions. If the text is too long it will be truncated in the display.

To set the initial checked state of the control you can provide a data-bb-checked="true" attribute.

    <div data-bb-type="toggle" data-bb-checked="true" data-bb-on="Yes" data-bb-off="No" onchange="doSomething(this)"></div>
    <div data-bb-type="toggle" data-bb-on="On" data-bb-off="Off" onchange="doSomething(this)"></div>
    <div data-bb-type="toggle" data-bb-on="Yes" data-bb-off="No" onchange="doSomething(this)"></div>

Note that any time the checkbox changes (either checked=true/false) the onchange event will be fired.

When BlackBerry 10 styling is applied the highlight color of the toggle button will use the highlightColor provided in the toolkit init() function.

JavaScript Interface

A toggle button can have its value set using the setChecked() function that takes a boolean value for the state of the toggle button.

    document.getElementById('mytoggle').setChecked(true);

The checked state can either be retrieved by examining the checked value of the toggle button or by using the getChecked() function

    alert(document.getElementById('mytoggle').checked);
    alert(document.getElementById('mytoggle').getChecked());

Upcoming Changes in v0.9.5

NOTE: These changes are in the "next" branch and will be included in the upcoming release of v0.9.5

JavaScript Interface

When you want to dynamically show or hide your toggle button you can call it's show() and hide() functions.

	document.getElementById('toggleBtn').show();
	document.getElementById('toggleBtn').hide();

As a convenience you can also remove your toggle button from the screen by calling the remove() function.

	document.getElementById('toggleBtn').remove();

You can also set the on and off captions using the setOnCaption() and setOffCaption() functions.

document.getElementById('toggleBtn').setOffCaption('No');
document.getElementById('toggleBtn').setOnCaption('Yes');