I'm just in the process of converting a site based on Bootstrap 2.3 to 3.1 and I've got lots of issues with Kendo's Bootstrap theme.
I tend to use use Bootstrap form-groups within custom Grid popup editors, but they don't behave with Kendo's CSS.
I've setup a Fiddle to show the problem. As you can see when you edit a record, the sizing and positioning of the labels and input and way out.
It's something to do with the last two entries in the common-template.less
file:
.k-animation-container,
.k-widget,
.k-widget *,
.k-animation-container *,
.k-widget *:before,
.k-animation-container *:after
{
.box-sizing(content-box);
}
.k-button,
.k-textbox,
.k-autocomplete,
div.k-window-content,
.k-tabstrip > .k-content > .km-scroll-container,
.k-block,
.k-edit-cell .k-widget,
.k-grid-edit-row .k-widget,
.k-grid-edit-row .text-box,
.km-actionsheet > li,
.km-shim
{
.box-sizing(border-box);
}
If you remove these the Bootstrap forms look correct, but certain Kendo elements (such as the pager) are adversely affected.
Is there a way around this or is this not how Telerik intend for its framework to be used?