FlipToggle: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "file:FlipToggle '''Description''' The FlipToggle control is a slider that changes between Off and On. To add a FlipToggle to your app, choose the FlipToggle icon in the...")
 
No edit summary
 
(21 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[file:FlipToggle]]
[[file:FlipToggle.png]]


'''Description'''
== Description ==


The FlipToggle control is a slider that changes between Off and On.
The FlipToggle control is a slider that changes between Off and On.
Line 7: Line 7:
To add a FlipToggle to your app, choose the FlipToggle icon in the Toolbar, then position it on the Design Screen. Use the Property Editor to set the properties you need, then add functions to your code to respond to the events that come from the FlipToggle: usually, just onclick.
To add a FlipToggle to your app, choose the FlipToggle icon in the Toolbar, then position it on the Design Screen. Use the Property Editor to set the properties you need, then add functions to your code to respond to the events that come from the FlipToggle: usually, just onclick.


'''Properties'''
If you set disabled to true, events will still fire. You will need to ignore the events in your code.


Standard properties are supported (“Properties”)
== Properties ==
 
Standard [[properties and methods|properties]] are supported, plus:
{| class="wikitable"
{| class="wikitable"
|-
|-
| Value() || The value of the control.
| value() || The value of the control.
|-
| setting() || Current setting of control. True/False.
|-
|-
| setValue() || Set the value to one of the titles.
| setValue() || Set the value to one of the titles.
|-
|-
| titleLeft || The name of the left title. Design only.
| titleLeft || The name of the left title. Limited to about 5 characters. Design only.
|-
|-
| titleRight || The name of the left title. Design only.
| titleRight || The name of the left title. Limited to about 5 characters. Design only.
|}
|}


'''Events'''
== Events ==
 
Standard [[events|events]] are supported.
 
== Example ==


Standard events are supported.
<tabber>
JavaScript=
<syntaxhighlight lang="JavaScript">
FlipToggle1.onchange = function() {
    Button1.value = FlipToggle1.value();
};


'''Example'''
Button1.onclick = function() {
    NSB.MsgBox(FlipToggle1.value());
};


<pre>
Button2.onclick = function() {
Print FlipToggle1.value
    //set to text value of the option you want.
</pre>
    FlipToggle1.setValue("On");
};
</syntaxhighlight>
|-|
BASIC=
<syntaxhighlight lang="vb.net">
Function FlipToggle1_onchange()
  Button1.value = FlipToggle1.value()
End Function
 
Function Button1_onclick()
  MsgBox FlipToggle1.value()
End Function
 
Function Button2_onclick()
  'set to text value of the option you want.
  FlipToggle1.setValue("On")
End Function
</syntaxhighlight>
</tabber>


'''Output'''
== Output ==


<pre>
<pre>
Off
Off
</pre>
</pre>
[[Category:Language Reference]]
[[Category:Controls]]
[[Category:jQuery Mobile]]

Latest revision as of 15:04, 24 July 2019

Description

The FlipToggle control is a slider that changes between Off and On.

To add a FlipToggle to your app, choose the FlipToggle icon in the Toolbar, then position it on the Design Screen. Use the Property Editor to set the properties you need, then add functions to your code to respond to the events that come from the FlipToggle: usually, just onclick.

If you set disabled to true, events will still fire. You will need to ignore the events in your code.

Properties

Standard properties are supported, plus:

value() The value of the control.
setting() Current setting of control. True/False.
setValue() Set the value to one of the titles.
titleLeft The name of the left title. Limited to about 5 characters. Design only.
titleRight The name of the left title. Limited to about 5 characters. Design only.

Events

Standard events are supported.

Example

FlipToggle1.onchange = function() {
    Button1.value = FlipToggle1.value();
};

Button1.onclick = function() {
    NSB.MsgBox(FlipToggle1.value());
};

Button2.onclick = function() {
    //set to text value of the option you want.
    FlipToggle1.setValue("On");
};

Function FlipToggle1_onchange()
  Button1.value = FlipToggle1.value()
End Function

Function Button1_onclick()
  MsgBox FlipToggle1.value()
End Function

Function Button2_onclick()
  'set to text value of the option you want.
  FlipToggle1.setValue("On")
End Function

Output

Off