States.js 2.7 KB

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