I'm trying to get a DatePicker to display correctly in a page that's using Bootstrap `form-group` and `form-control` tags, but I'm not having much success.
The TelerikDateInput component exposes the Class property, but I don't think the DatePicker (or at least it doesn't seem to from my experimentation and from the documentation?
I've tried various ways of doing this, e.g.
<div class="form-group"> <label for="dueDate" class="control-label col-md-4">Expected Arrival Date: </label> <div class="col-md-8"> <TelerikDatePicker Class="form-control" Format="dd/MM/yyyy" @bind-Value="@State.BillOfLadingVM.DueDate" /> </div> <ValidationMessage For="@(() => State.BillOfLadingVM.DueDate)" /></div>
But I always get something along the lines of the attached image.
Is there any way to get this to work?