I am developing an MVC4 application.
I want to change IsChanged field in my Model, when model.ExternalVenderNo is changed.
Bel
try jquery for this
$('#ExternalVenderNo').change(function(){
alert('Changed!');
});
Try adding to attributes
@Html.EditorFor(model => Model.Lengthofside1, new { htmlAttributes = new { onchange = "OnChangeEvent(this)", @class = "form -control text-right" } })
This worked for me.
Try the same with @Html.TextBoxFor
@Html.TextBoxFor(model => model.ExternalVenderNo, new { onchange = "OnChangeEvent()" })
<script type="text/javascript">
function OnChangeEvent(){
alert("value is changed");
@Model.IsChanged = true;
}
</script>
or leave Jquery to handle the change event
@Html.EditorFor(model => model.ExternalVenderNo)
<script type="text/javascript">
$('#ExternalVenderNo').change(function(){
alert('Changed!');
@Model.IsChanged = true;
});
</script>
The following will definitely work for you.
$(document).ready(function()
{
$('#ExternalVenderNo').on("change", function()
{
alert('Changed!');
});
});