I have a field like:
<div class="editor-field">
@Html.TextBoxFor(model => model.DivNo)
</div>
I am using Autocomplete and maskedinput jquery libraries to format my field and auto complete suggestion from database.
$("#DivNo").mask("999 9999");
$("#DivNo").unmask().autocomplete({
source: '@Url.Action("actionname","ControllerName")',
minLength: 1
});
Now when i enter values into my textbox field, it is not showing autocomplete values as dropdown as i type along. But the mask is working and displaying values in 999 9999 format.Please suggest.
Thanks