I implemented a jQuery calendar picker so if an user clicks on Textbox, the calendar will open. However there is also an input history which covers a piece of the calendar. Is there any way of turning off the history?
CODE
<div class="form-group">
<label class="col-sm-1 control-label">Datum od</label>
<div class="col-sm-10">
@Html.TextBoxFor(x => x.DateFrom, new {id = "date", @class = "form-control" })
@Html.ValidationMessageFor(x => x.DateFrom)
</div>
</div>
<script>$('#date').datepicker({})</script>