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);
});
});