Watch this example on YouTube
@model WebApplication1.Models.OrderCustomClass
@using (Html.BeginForm("Index", "Home"))
{
@Html.DropDownListFor(x=>x.or.ProductID, new SelectList(Model.prod, "ProductID", "Name", Model.prod), "")
}
@section Scripts{
<script type="text/javascript">
$("#or_ProductID").change(function () {
alert("changed")
});
</script>
}
No comments:
Post a Comment