I use Select2 to populate a dropdown and I would like to choose the item after I update another dropdown or a label by doing a search.
ex:
@Html.DropDownListFor(m => m.IdEstado, Model.CarregarEstado.Select(x => new SelectListItem { Text = x.Nome, Value = x.IdEstado.ToString() }), new { @class = "form-control select2_tipo" })
I need that after selecting the state, look for the bank which country it belongs to.
Thankful
Ulysses