0
I use Select2 to popular a dropdown and would like to after choosing the item 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" })
need that after selecting the state search in the bank which country it belongs to.
Grateful
Odysseus
Thanks, it worked out.
– Ulisses Correia