Display value of an object item using Javascript

0

I'm a beginner in Javascript, I'm not sure how to display the value qtdeEstoque of listaTamanhos . Can anyone help me?

alert("Tamanho: " + lista.Value + " / Estoque: " + data[i].qtdeEstoque);

listSizes:

id
qtdeEstoque

Controller:

if (HttpContext.Request.IsAjaxRequest())
{
    return Json(new SelectList(
                listaTamanhos,
                "id",
                "id"), JsonRequestBehavior.AllowGet
                );
}

View:

$.getJSON("/produto", { id: id, cor: idSelected }, function (data) {
   $.each(data, function (i, lista) {
      alert("Tamanho: " + lista.Value + " / Estoque: " + data[i].qtdeEstoque);
   });
});
    
asked by anonymous 13.10.2016 / 14:34

1 answer

0
$.getJSON("/produto", { id: id, cor: idSelected }, function (data) {
   $.each(data, function (i, lista) {
      alert("Tamanho: " + lista["id"]+ " / Estoque: " + lista["qtdeEstoque"];
   });
});
    
13.10.2016 / 14:51