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
| Ext.define('SimpleTasks.view.tasks.Form', {
| extend: 'Ext.form.Panel',
| xtype: 'taskForm',
| requires: [
| 'Ext.layout.container.HBox',
| 'Ext.form.field.Date',
| 'Ext.ux.TreePicker'
| ],
| layout: 'hbox',
| cls: 'tasks-new-form',
|
| initComponent: function() {
| this.items = [
| {
| xtype: 'component',
| cls: 'tasks-new',
| width: 24,
| height: 24
| },
| {
| xtype: 'textfield',
| name: 'title',
| emptyText: 'Add a new task'
| },
| {
| xtype: 'treepicker',
| name: 'list_id',
| displayField: 'name',
| store: Ext.create('SimpleTasks.store.Lists', {storeId: 'Lists-TaskForm'}),
| width: 195
| },
| {
| xtype: 'datefield',
| name: 'due',
| value: new Date(),
| width: 95
| }
| ];
|
| this.callParent(arguments);
| }
|
| });
|
|