So we added a required field to our form that our users submit and are able to edit. So if a user were to open their form to edit it, there would be a new required field, which works fine. If you try to submit the form, a model error displays saying they need to fill it out. Fine.
But they have no indication that the field is required. As far as I know, ModelState.IsValid only triggers on a form POST. Is there anyway to call it right on page load so they can see right away that they need to fill out that new field?