I have a form that accepts employee's date of birth and I have used jquery datepicker ui for that. I want the date picker to use the 'dd-mm-yyyy' format. any help would be greatly appreciated - thanks
<div class="editor-field">
            @Html.EditorFor(model=>model.DOB)
        </div>
<script type="text/javascript">
    $(document).ready(function () {
        $('#DOB').datepicker();
     });
</script>
 
    