I have the following DropDownList:
<div class="editor-field">
@Html.DropDownList("ProdutoId", String.Empty)
</div>
And this jQuery function that when the user presses the button will pick up the selected value and play on a table:
function AddRow()
{
var produto = $("ProdutoId")
$('#tabelaPedidos').append('<tr><td>' + produto + '</td><td>teste</td></tr>')
}
But I can not get the DropDownList ID to get the selected value ...
As soon as I populate my DropDownList
ViewBag.ProdutoId = new SelectList(context.Produtos, "ID", "Nome", pedido.ProdutoId);