how could you run some action when pushing a toggle button like:
{
xtype: 'togglefield',
name: 'enableSnd',
label: 'Sound',
value : 1,
}
?
thnx!
|
how could you run some action when pushing a toggle button like:
? thnx!
| ||||
|
feedback
|
|
Here's an example I'm currently using in an app of mine. I use the "beforechange" function to check and validate some data before I perform the real action in "change".
| |||||
feedback
|
|
Have a look at the official documentation in sencha: For a simple button:
For a toggle, event seems to be | |||||
feedback
|
|
I use the the following code to set an initial value to a togglefield and to react to changes of the togglefield. I initially disable the togglefield, and then use the (unexpected) behaviour that Sencha Touch fires a change event for this togglefield while initializing it to enable the togglefield. Note this should work for both true and false as initial values. If you would like to actually disable the togglefield initially, you would have to remove the else part.
| |||
|
feedback
|