Hi,
When I open a ConboBox the dropdown is not aligning correctly (see attached). Below is the html that renders the control.
<div class="k-group"> <div class="col-md-12">@Html.LabelFor(m => m.MobilePhoneNumber)</div> <div class="col-md-12"> @Html.Kendo().ComboBoxFor(m => m.MobilePhoneCountry).DataTextField("MobilePhoneCountry").DataValueField("MobilePhoneCountryID").BindTo(Model.MobilePhoneCountryList) </div> <div class="col-md-12">@Html.TextBoxFor(m => m.MobilePhoneNumber, new { @class = "k-textbox" })</div> <div class="col-md-12">@Html.ValidationMessageFor(m => m.MobilePhoneNumber)</div> </div>
Thanks
