I'm adding into a "container" a div "row" and "row-cols-2"
into a form tag.
<div id="generalPlaceHolder" class="row row-cols-2"> <div class="col form-group"> @Html.LabelFor(model => model.Date, htmlAttributes: new { @class = "control-label" })<br /> @(Html.Kendo().DatePickerFor(model=>model.Date) .Min(new DateTime(1900, 1, 1)) .Max(new DateTime(2099, 12, 31)) .Format("dd/MM/yyyy") .Value(DateTime.Today). HtmlAttributes("form-control")) <span asp-validation-for="Date" class="text-danger"></span> </div> <div class="col form-group"> <label asp-for="Name" class="control-label"></label> <input asp-for="Name" class="form-control" /> <span asp-validation-for="Name" class="text-danger"></span> </div> <div class="col form-group"> <label asp-for="Name2" class="control-label"></label> <input asp-for="Name2" class="form-control" /> <span asp-validation-for="Name2" class="text-danger"></span> </div>but it not splits all "col" tags, 2 "col" object for every line.
Are there any compatibility problem with bootstrap v4 theme? Or in general with theme's telerik?