Sencha Touch - Forma
Descrizione
Questo serve per creare una vista modulo.
Sintassi
Di seguito è riportata la semplice sintassi per aggiungere un modulo.
Ext.create('Ext.Form', {})
Esempio
Di seguito è riportato un semplice esempio che mostra l'utilizzo.
<!DOCTYPE html>
<html>
<head>
<link href = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/resources/css/sencha-touch.css" rel = "stylesheet" />
<script type = "text/javascript" src = "https://cdn.sencha.com/touch/sencha-touch-2.4.2/sencha-touch-all.js">
</script>
<script type = "text/javascript">
Ext.application({
name: 'Sencha', launch: function() {
var formPanel = Ext.create('Ext.form.Panel', {
fullscreen: true,
items: [{
xtype: 'fieldset',
items: [
{
xtype: 'textfield',
name : 'name',
label: 'Name'
},
{
xtype: 'emailfield',
name : 'email',
label: 'Email'
},
{
xtype: 'passwordfield',
name : 'password',
label: 'Password'
}
]
}]
});
formPanel.add({
xtype: 'toolbar', docked: 'bottom', layout: { pack: 'center' }, items: [
{
xtype: 'button', text: 'Set Data', handler: function() {
formPanel.setValues({
name: 'Seth', email: '[email protected]', password: 'secret'
});
}
},
{
xtype: 'button', text: 'Get Data', handler: function() {
Ext.Msg.alert('Form Values', JSON.stringify(formPanel.getValues(),null, 2));
}
},
{
xtype: 'button', text: 'Clear Data', handler: function() {
formPanel.reset();
}
}
]
});
}
});
</script>
</head>
<body>
</body>
</html>
Questo produrrà il seguente risultato: