button.js
4.07 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
Ext.require('Ext.button.*');
Ext.onReady(function() {
var genericConfig = [{
_name: 'Text Only'
},{
_name : 'Disabled',
disabled: true
},{
_name : 'Icon Only',
text : null,
iconCls: 'add'
},{
_name : 'Icon and Text (left)',
iconCls: 'add',
iconAlign: 'left'
},{
_name : 'Icon and Text (top)',
iconCls: 'add',
iconAlign: 'top'
},{
_name : 'Icon and Text (right)',
iconCls: 'add',
iconAlign: 'right'
},{
_name : 'Icon and Text (bottom)',
iconCls: 'add',
iconAlign: 'bottom'
}],
menu = {
items: [{
text:'Menu Item 1'
},{
text:'Menu Item 2'
},{
text:'Menu Item 3'
}]
};
function renderButtons(title, configs, defaultConfig) {
Ext.getBody().createChild({
tag : 'h2',
html: title
});
Ext.each(configs, function(config) {
var generateButtons = function(config) {
//Ext.each(['gray', 'darkgray', 'blue', 'darkblue', 'red', 'green'], function(color) {
Ext.each(['default'], function(color) {
Ext.widget(defaultConfig.defaultType || 'button', Ext.apply({
text : 'Small',
scale: 'small',
color: color
}, config, defaultConfig));
Ext.widget(defaultConfig.defaultType || 'button', Ext.apply({
text : 'Medium',
scale: 'medium',
color: color
}, config, defaultConfig));
Ext.widget(defaultConfig.defaultType || 'button', Ext.apply({
text : 'Large',
scale: 'large',
color: color
}, config, defaultConfig));
}, this);
};
Ext.getBody().createChild({
tag : 'h3',
html: config._name
});
var el = Ext.getBody().createChild({});
if (config.children) {
Ext.each(config.children, function(child) {
el = el.createChild({
children: [
{
tag : 'h4',
html: child._name
}
]
});
}, this);
} else {
generateButtons(Ext.apply(config, {
renderTo: el
}));
}
}, this);
}
renderButtons('Normal Buttons', genericConfig, {
cls: 'floater'
});
renderButtons('Toggle Buttons', genericConfig, {
cls: 'floater',
enableToggle: true
});
renderButtons('Menu Buttons', genericConfig, {
cls: 'floater',
menu : menu
});
renderButtons('Split Buttons', genericConfig, {
cls: 'floater',
defaultType: 'splitbutton',
menu : menu
});
renderButtons('Menu Buttons (Arrow on bottom)', genericConfig, {
cls: 'floater',
menu : menu,
arrowAlign: 'bottom'
});
renderButtons('Split Buttons (Arrow on bottom)', genericConfig, {
cls: 'floater',
defaultType: 'splitbutton',
menu : menu,
arrowAlign: 'bottom'
});
renderButtons('Text align: left', genericConfig, {
cls: 'floater',
textAlign: 'left',
width: 200
});
renderButtons('Text align: right', genericConfig, {
cls: 'floater',
textAlign: 'right',
width: 200
});
renderButtons('Link Buttons', genericConfig, {
cls: 'floater',
href: 'http://www.sencha.com/'
});
});