I have the following code:
@Html.LabelFor(model => model.IdPuertoOrigen, "Puerto de Origen")
@Html.AutocompleteFor(model => model.IdPuertoOrigen, model => model.PuertoOrigen_Descripcion, false, Url.Action("AutocompletePuertoSearch", "Puerto", new { area = "Maestros" }), "width: 80%;")
@Html.ValidationMessageFor(model => model.IdPuertoOrigen)
The autocompletefor I need it to be mandatory to fill out, but I do not know how to do it, they recommended me with javascript but I can not find the form, if you can help me, I would really appreciate it.