This question is locked. New answers and comments are not allowed.
Hi
i have two ComboBox Country and Province
@(Html.Telerik().ComboBoxFor(x => x.SearchCountryId).BindTo(Model.AvailableStateProvices).Encode(true).Name("SearchCountryId")
.DataBinding(x => x.Ajax().Enabled(true).Select("AllCountries", "Country", new { selectedId = Model.SearchCountryId }))
.CascadeTo("SearchStateProviceId"))
@(Html.Telerik().ComboBoxFor(x => x.SearchStateProviceId).BindTo(Model.AvailableStateProvices).Encode(true).Name ("SearchStateProviceId")
.DataBinding(x => x.Ajax().Enabled(true).Select("_GetStateProvinceByCountryId", "Country")))
@Html.ValidationMessageFor(model => model.SearchStateProviceId)
when i select country i receive error "Error! The requested URL returned 404 - Not Found".
i have two ComboBox Country and Province
@(Html.Telerik().ComboBoxFor(x => x.SearchCountryId).BindTo(Model.AvailableStateProvices).Encode(true).Name("SearchCountryId")
.DataBinding(x => x.Ajax().Enabled(true).Select("AllCountries", "Country", new { selectedId = Model.SearchCountryId }))
.CascadeTo("SearchStateProviceId"))
@(Html.Telerik().ComboBoxFor(x => x.SearchStateProviceId).BindTo(Model.AvailableStateProvices).Encode(true).Name ("SearchStateProviceId")
.DataBinding(x => x.Ajax().Enabled(true).Select("_GetStateProvinceByCountryId", "Country")))
@Html.ValidationMessageFor(model => model.SearchStateProviceId)
when i select country i receive error "Error! The requested URL returned 404 - Not Found".