Hello,
I have this autocomplete in my view :
@(Html.Kendo().AutoComplete()
.Name("description.EmplacementEquipementAutreSpecifier")
.DataTextField("EmplacementEquipementAutreSpecifier")
.Filter("contains")
.MinLength(3)
.HtmlAttributes(new { style = "width:100%;", @class = "form-control" })
.DataSource(source =>
{
source
.Read(read =>
{
read.Action("GetEmplacementEquipementAutreSpecifier", "Description");
})
.ServerFiltering(false);
})
.Value(Model.description.EmplacementEquipementAutreSpecifier)
.Events(e => e.Filtering("OnChangeNoEmplacementEquipement").Close("OnChangeNoEmplacementEquipement"))
)
And need to apply a Bootstrap style (class="form-control"). See result in attachment.
When I remove some style I can see the reason of the missing bottom blue border. The input box seem a bit lower compare to the thing that make the blue border.
Any suggestion to correct this issue? Css probably.