vanpersil
vanpersil

Reputation: 814

how to use bootstrap and kendo ui

I want to use KendoUI and bootstrap in my web application. I like kendo.material.css style. When I link bootstrap.css to be able to use bootstrap responsive features I also get some bootstrap styling i.e. blue border around a focused input. How to use these two frameworks without bootstrap specific styling (colors and so on)

Upvotes: 2

Views: 4096

Answers (1)

andrescpacheco
andrescpacheco

Reputation: 696

According to kendo, the best integration between should be achieved using:

  1. Use the kendo.common-bootstrap.min.css instead of kendo.common.css. This ensures that the dimensions of Kendo UI are going to match match the ones in Bootstrap.

  2. Use the kendo.bootstrap.min.css theme which applies the Bootstrap colors to the Kendo UI widgets.

For more information you can check here: http://docs.telerik.com/kendo-ui/third-party/using-kendo-with-twitter-bootstrap

Kendo also provide a themebuilder. You can find it here: http://docs.telerik.com/kendo-ui/styles-and-layout/themebuilder

André

Upvotes: 3

Related Questions