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?
You can use jQuery .change() method: