1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| Ext.define('KitchenSink.view.form.LoginForm', {
| extend: 'Ext.form.Panel',
| xtype: 'login-form',
|
| //<example>
| exampleTitle: 'Login Form',
| exampleDescription: [
| '<p>Demonstrates a simple login form.</p>'
| ].join(''),
| //</example>
|
| title: 'Login',
| frame:true,
| width: 320,
| bodyPadding: 10,
|
| defaultType: 'textfield',
| defaults: {
| anchor: '100%'
| },
|
| items: [
| {
| allowBlank: false,
| fieldLabel: 'User ID',
| name: 'user',
| emptyText: 'user id'
| },
| {
| allowBlank: false,
| fieldLabel: 'Password',
| name: 'pass',
| emptyText: 'password',
| inputType: 'password'
| },
| {
| xtype:'checkbox',
| fieldLabel: 'Remember me',
| name: 'remember'
| }
| ],
|
| buttons: [
| { text:'Register' },
| { text:'Login' }
| ]
| });
|
|