]> git.proxmox.com Git - extjs.git/blame - extjs/examples/classic/neptune-components/app/view/form/widget/ComboBox.js
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / classic / neptune-components / app / view / form / widget / ComboBox.js
CommitLineData
6527f429
DM
1Ext.define('Neptune.view.form.widget.ComboBox', {\r
2 extend: 'Ext.form.field.ComboBox',\r
3 xtype: 'comboBox',\r
4\r
5 displayField: 'state',\r
6 store: Ext.create('Ext.data.ArrayStore', {\r
7 fields: ['abbr', 'state'],\r
8 data : [\r
9 ['AL', 'Alabama', 'The Heart of Dixie'],\r
10 ['AK', 'Alaska', 'The Land of the Midnight Sun'],\r
11 ['AZ', 'Arizona', 'The Grand Canyon State'],\r
12 ['AR', 'Arkansas', 'The Natural State'],\r
13 ['CA', 'California', 'The Golden State'],\r
14 ['CO', 'Colorado', 'The Mountain State'],\r
15 ['CT', 'Connecticut', 'The Constitution State'],\r
16 ['DE', 'Delaware', 'The First State'],\r
17 ['FL', 'Florida', 'The Sunshine State'],\r
18 ['GA', 'Georgia', 'The Peach State'],\r
19 ['HI', 'Hawaii', 'The Aloha State'],\r
20 ['ID', 'Idaho', 'Famous Potatoes'],\r
21 ['IL', 'Illinois', 'The Prairie State'],\r
22 ['IN', 'Indiana', 'The Hospitality State'],\r
23 ['IA', 'Iowa', 'The Corn State'],\r
24 ['KS', 'Kansas', 'The Sunflower State'],\r
25 ['KY', 'Kentucky', 'The Bluegrass State'],\r
26 ['LA', 'Louisiana', 'The Bayou State'],\r
27 ['ME', 'Maine', 'The Pine Tree State'],\r
28 ['MD', 'Maryland', 'Chesapeake State'],\r
29 ['MA', 'Massachusetts', 'The Spirit of America'],\r
30 ['MI', 'Michigan', 'Great Lakes State'],\r
31 ['MN', 'Minnesota', 'North Star State'],\r
32 ['MS', 'Mississippi', 'Magnolia State'],\r
33 ['MO', 'Missouri', 'Show Me State'],\r
34 ['MT', 'Montana', 'Big Sky Country'],\r
35 ['NE', 'Nebraska', 'Beef State'],\r
36 ['NV', 'Nevada', 'Silver State'],\r
37 ['NH', 'New Hampshire', 'Granite State'],\r
38 ['NJ', 'New Jersey', 'Garden State'],\r
39 ['NM', 'New Mexico', 'Land of Enchantment'],\r
40 ['NY', 'New York', 'Empire State'],\r
41 ['NC', 'North Carolina', 'First in Freedom'],\r
42 ['ND', 'North Dakota', 'Peace Garden State'],\r
43 ['OH', 'Ohio', 'The Heart of it All'],\r
44 ['OK', 'Oklahoma', 'Oklahoma is OK'],\r
45 ['OR', 'Oregon', 'Pacific Wonderland'],\r
46 ['PA', 'Pennsylvania', 'Keystone State'],\r
47 ['RI', 'Rhode Island', 'Ocean State'],\r
48 ['SC', 'South Carolina', 'Nothing Could be Finer'],\r
49 ['SD', 'South Dakota', 'Great Faces, Great Places'],\r
50 ['TN', 'Tennessee', 'Volunteer State'],\r
51 ['TX', 'Texas', 'Lone Star State'],\r
52 ['UT', 'Utah', 'Salt Lake State'],\r
53 ['VT', 'Vermont', 'Green Mountain State'],\r
54 ['VA', 'Virginia', 'Mother of States'],\r
55 ['WA', 'Washington', 'Green Tree State'],\r
56 ['WV', 'West Virginia', 'Mountain State'],\r
57 ['WI', 'Wisconsin', "America's Dairyland"],\r
58 ['WY', 'Wyoming', 'Like No Place on Earth']\r
59 ]\r
60 }),\r
61 fieldLabel: 'Combo Box',\r
62 emptyText: 'Select a State...'\r
63});