source: trunk/web/addons/job_monarch/lib/extjs/examples/form/states.js @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 2.8 KB
Line 
1/*
2 * Ext JS Library 2.2.1
3 * Copyright(c) 2006-2009, Ext JS, LLC.
4 * licensing@extjs.com
5 *
6 * http://extjs.com/license
7 */
8
9// some data used in the examples
10Ext.namespace('Ext.exampledata');
11
12Ext.exampledata.states = [
13        ['AL', 'Alabama', 'The Heart of Dixie'],
14        ['AK', 'Alaska', 'The Land of the Midnight Sun'],
15        ['AZ', 'Arizona', 'The Grand Canyon State'],
16        ['AR', 'Arkansas', 'The Natural State'],
17        ['CA', 'California', 'The Golden State'],
18        ['CO', 'Colorado', 'The Mountain State'],
19        ['CT', 'Connecticut', 'The Constitution State'],
20        ['DE', 'Delaware', 'The First State'],
21        ['DC', 'District of Columbia', "The Nation's Capital"],
22        ['FL', 'Florida', 'The Sunshine State'],
23        ['GA', 'Georgia', 'The Peach State'],
24        ['HI', 'Hawaii', 'The Aloha State'],
25        ['ID', 'Idaho', 'Famous Potatoes'],
26        ['IL', 'Illinois', 'The Prairie State'],
27        ['IN', 'Indiana', 'The Hospitality State'],
28        ['IA', 'Iowa', 'The Corn State'],
29        ['KS', 'Kansas', 'The Sunflower State'],
30        ['KY', 'Kentucky', 'The Bluegrass State'],
31        ['LA', 'Louisiana', 'The Bayou State'],
32        ['ME', 'Maine', 'The Pine Tree State'],
33        ['MD', 'Maryland', 'Chesapeake State'],
34        ['MA', 'Massachusetts', 'The Spirit of America'],
35        ['MI', 'Michigan', 'Great Lakes State'],
36        ['MN', 'Minnesota', 'North Star State'],
37        ['MS', 'Mississippi', 'Magnolia State'],
38        ['MO', 'Missouri', 'Show Me State'],
39        ['MT', 'Montana', 'Big Sky Country'],
40        ['NE', 'Nebraska', 'Beef State'],
41        ['NV', 'Nevada', 'Silver State'],
42        ['NH', 'New Hampshire', 'Granite State'],
43        ['NJ', 'New Jersey', 'Garden State'],
44        ['NM', 'New Mexico', 'Land of Enchantment'],
45        ['NY', 'New York', 'Empire State'],
46        ['NC', 'North Carolina', 'First in Freedom'],
47        ['ND', 'North Dakota', 'Peace Garden State'],
48        ['OH', 'Ohio', 'The Heart of it All'],
49        ['OK', 'Oklahoma', 'Oklahoma is OK'],
50        ['OR', 'Oregon', 'Pacific Wonderland'],
51        ['PA', 'Pennsylvania', 'Keystone State'],
52        ['RI', 'Rhode Island', 'Ocean State'],
53        ['SC', 'South Carolina', 'Nothing Could be Finer'],
54        ['SD', 'South Dakota', 'Great Faces, Great Places'],
55        ['TN', 'Tennessee', 'Volunteer State'],
56        ['TX', 'Texas', 'Lone Star State'],
57        ['UT', 'Utah', 'Salt Lake State'],
58        ['VT', 'Vermont', 'Green Mountain State'],
59        ['VA', 'Virginia', 'Mother of States'],
60        ['WA', 'Washington', 'Green Tree State'],
61        ['WV', 'West Virginia', 'Mountain State'],
62        ['WI', 'Wisconsin', "America's Dairyland"],
63        ['WY', 'Wyoming', 'Like No Place on Earth']
64    ];
Note: See TracBrowser for help on using the repository browser.