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