display related field based on textbox id

83 Views Asked by At

I have two textboxes

<div>@Html.TextBoxFor(model=>model.Voyage_ID, new{id="VID"})<br /></div>


<div>@Html.EditorFor(model=>model.Arrived, new { @id = "arrived",})</div>

The first is updated dynamically from json based on the selected index of a dropdownlist. In the same manner, I wish to display the second field (and many more other fields that are) associated with the id captured in VID .

How can I accomplish this?

1

There are 1 best solutions below

5
On

You can use jQuery .change() method:

$(document).ready(function(){
    $('#VID').change(function(){
       var currentValue = $(this).val(); //get current value of the input
       //here comes your logic
    });
})