I work with Asp.Net MVC4 in my form I have dropdownlist in cascading, when I select "Distrito" in another DropDownList loads the values for "Sucursal" this works correctly I can insert a record my problem is when I need to search for an item to retrieve data not setting the correct value. This is the code in the controller:
public JsonResult Buscar(string id){
string Mensaje = "";
Models.cSinDenuncias oDenuncia = new Models.cSinDenuncias();
oDenuncia.sd_iddenuncia = id;
var denuncia = Servicio.RecuperaDenuncia<Models.cSinDenuncias>(ref Mensaje, oDenuncia.getPk(), oDenuncia);
string HoraDenuncia = denuncia.sd_horadenuncia.ToString();
return Json(new {objDenuncia = denuncia, hDenuncia = HoraDenuncia});
}
in objDenuncia I have the values for example the value objDenuncia.sd_pardistrito = "TJA" objDenuncia.sd_sucursal = "YCB"
When I do find this is my code in the view:
function Buscar() {
var Iddenuncia = $('#sd_iddenuncia').val();
$.ajax({
url: '@Url.Action("Buscar", "raDenuncia")',
type: 'POST',
data: { Id: Iddenuncia },
dataType: 'json',
success: function (data) {
$('#sd_iddenuncia').val(data.objDenuncia.sd_iddenuncia);
$('#ddlParDistrito').val(data.objDenuncia.sd_pardistrito);
$('#ddlParDistrito').trigger('change');
$('#ddlSucursal').trigger('change');
$('#ddlSucursal').val();
$('#ddlSucursal').val(data.objDenuncia.sd_sucursal);
$("select#ddlSucursal").val(data.objDenuncia.sd_sucursal);
}
});
}
The value in the dropdownlist ddlParDistrito is "TJA" text is "TARIJA" shows me well the text in the component the execute $('#ddlParDistrito').trigger('change'); this load data for dropdownlist "Sucursal" but not set the current value, this showme "-- SUCURSAL --" here the current value should be "YCB" with text "YACUIBA" please help me with this problem.
Regards Ricardo
In my view I hae this dropdownlist, for "SUCURSAL" I use new SelectList(Enumerable.Empty()
<td class="name"><label>Distrito:</label></td>
<td class="name">@Html.DropDownListFor(u => u.sd_pardistrito, new SelectList(ViewBag.Distrito as System.Collections.IEnumerable, "cp_idparametro", "cp_descparametro"), "-- DISTRITO --", new { id = "ddlParDistrito", style = "width:125px;" })</td>
<td class="name"><label>Sucursal:</label></td>
<td class="name">@Html.DropDownListFor(u => u.sd_sucursal, new SelectList(Enumerable.Empty<SelectListItem>(), "cp_idparametro", "cp_descparametro"), "-- SUCURSAL --", new { id = "ddlSucursal", style = "width:125px;" })</td>
An in my controller I use this method for load the dropdownlist when change option in "DISTRITO"
[AcceptVerbs(HttpVerbs.Get)]
public JsonResult LoadSucusalByDistrito(string id)
{
var sucursalList = this.GetSucursal(id);
var sucursalData = sucursalList.Select(m => new SelectListItem()
{
Text = m.cp_descparametro,
Value = m.cp_idparametro,
});
return Json(sucursalData, JsonRequestBehavior.AllowGet);
}
In my view, when change option ddlDistrito load ddlSucursal
$("#ddlParDistrito").change(function () {
var idDistrito = $(this).val();
$.getJSON("/raDenuncia/LoadSucusalByDistrito", { id: idDistrito },
function (distritoData) {
var select = $("#ddlSucursal");
select.empty();
select.append($('<option/>', {
value: 0,
text: "-- SUCURSAL --"
}));
$.each(distritoData, function (index, itemData) {
select.append($('<option/>', {
value: itemData.Value,
text: itemData.Text
}));
});
});
});

$('#ddlSucursal').val(data.objDenuncia.sd_sucursal);? – user474407 Jan 29 at 15:12