Example #1
0
        public void setCityList(string state)
        {
            var location = new LocationList();

            CityList = location.Cities.FirstOrDefault(x => x.Key.ToLower() == StateList.FirstOrDefault(u => u.Value.ToLower() == state.ToLower()).Value.ToLower()).Value.Select(x => new SelectListItem {
                Text = x, Value = x
            }).ToList();
            CityList.Insert(0, new SelectListItem {
                Text = "Select City", Disabled = true, Selected = true, Value = ""
            });
        }
Example #2
0
        public CreateStudioViewModel()
        {
            var location = new LocationList();

            StateList = location.States.Select(x => new SelectListItem {
                Text = x, Value = x
            }).ToList();
            StateList.Insert(0, new SelectListItem {
                Text = "Select State", Disabled = true, Selected = true, Value = ""
            });
            CityList = location.Cities.FirstOrDefault(x => x.Key.ToLower() == StateList[1].Value.ToLower()).Value.Select(x => new SelectListItem {
                Text = x, Value = x
            }).ToList();
            CityList.Insert(0, new SelectListItem {
                Text = "Select City", Disabled = true, Selected = true, Value = ""
            });
        }