Alias.js
935 Bytes
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
Ext.define('MyMA.view.Alias', {
extend: 'Ext.window.Window',
alias: 'widget.alias',
layout: 'fit',
title: 'Alias',
width: 400,
constrainHeader: true,
closeAction: 'destroy',
buttons: [{
xtype: 'button',
itemId: 'savedata',
text: 'Save',
scope: this
}],
items: [{
xtype: 'form',
frame: true,
monitorValid: true,
defaults: {
xtype: 'textfield',
anchor: '100%',
allowBlank: false
},
items: [{
xtype: 'hidden',
name: 'id'
}, {
fieldLabel: 'Alias',
name: 'alias',
vtype: 'email'
}, {
fieldLabel: 'Recipient',
name: 'recipient',
vtype: 'email'
}, {
fieldLabel: 'Comment',
xtype: 'textarea',
name: 'comment'
}]
}]
});