Kendo UI Core - Bootstrap Stylesheets
I uploaded Kendo UI Core with Telerik website, and I want to use Boostrap theme for your widgets, but, nevertheless, three tables boot styles to choose from: kendo.bootstrap.min.css
, kendo.common-bootstrap.core.min.css
and kendo.common-bootstrap.min.css
. I will be using datepicker, input masks and dropdown menus. Which one should I use? Thank.
source to share
I'm pretty sure it kendo.common-bootstrap.core.min
only includes styling for free widgets (Kendo UI Core) and kendo.common-bootstrap.min
includes styling for all free widgets and paid widgets (Kendo UI Pro).
If you are not using any of the "Pro" widgets, you can use the .core.
.
You also need to add kendo bootstrap theme.
In general, you should have something like:
<link href="bootstrap.min.css" rel="stylesheet" />
<link href="kendo.common-bootstrap.min.css" rel="stylesheet" />
<link href="kendo.bootstrap.min.css" rel="stylesheet" />
These 3 files:
- Actual bootstrap style.
- Kendo Bootstrap sizing and layout
- Kendo Bootstrap Theme
source to share