剑道的样式窗口的内容与引导 [英] Styling Kendo Window's content with Bootstrap

查看:222
本文介绍了剑道的样式窗口的内容与引导的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个通用的Kendo窗口,我要求不同的部分视图。我不能使用引导来对内容进行样式化,因为它会在不同的浏览器中导致不同的布局,并且元素总是混乱的。

I have a generic Kendo Window that I call for different partial views. I can't style contents using bootstrap, as it causes different layouts in different browsers and elements are always cluttered.

这是一个示例:

<div class="form-group form-inline">
    <div class="line">
        <div class="col-xs-6">
            @Html.LabelFor(m => m.2, new { @class = "col-xs-4 control-label" })
            @Html.DisplayFor(m => m.2)
        </div>
        <div class="col-xs-4">
            @Html.LabelFor(m => m.3, new { @class = "col-xs-4 control-label" })
            @Html.DisplayFor(m => m.3)
        </div>
    </div>
    <div class="line">
        <div class="col-xs-6">
            @Html.LabelFor(m => m.4, new { @class = "col-xs-4 control-label" })
            @Html.DisplayFor(m => m.4)
        </div>
        <div class="col-xs-4">
            @Html.LabelFor(m => m.5, new { @class = "col-xs-4 control-label" })
            @Html.DisplayFor(m => m.5)
        </div>
    </div>
</div>
<div class="clearfix">&nbsp;</div>
<div class="clearfix">&nbsp;</div>
@(Html.Kendo().Grid<Class...>()
....

和行:

.line{
    line-height: 20px;
}

我缺少一些东西,我只想有一个2列布局你给我一个例子吗?

Am I missing something? I just want to have a 2-column layout. Can you give me an example please?

推荐答案

我不知道为什么,但我应该使用 col -xs-5 。另外,为了将元素保存在选项卡中我必须将它们放在 code>。

I don't know why, but I should use col-xs-5. Also, to keep elements inside a tab strip I have to put them inside a container.

<div class="container-fluid">
    <div class="form-group form-inline col-xs-12">
        <div class="col-xs-5"></div>
        <div class="col-xs-5"></div>
    </div>
    <div class="form-group form-inline col-xs-12">
        <div class="col-xs-5"></div>
        <div class="col-xs-5"></div>
    </div>
......
</div>

UPDATE
我在找到了解决方案

UPDATE I found the solution at their documents.

首先,您需要添加以下引用。

First you need to add the following references.

<link rel="stylesheet" href="http://cdn.kendostatic.com/VERSION/styles/kendo.common-bootstrap.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/VERSION/styles/kendo.bootstrap.min.css">

然后将以下CSS添加到您的site.css并将其包含在页面中:

And then add the following CSS to your site.css and include it in the page:

/* reset everything to the default box model */

*, :before, :after
{
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/* set a border-box model only to elements that need it */

.form-control, /* if this class is applied to a Kendo UI widget, its layout may change */
.container,
.container-fluid,
.row,
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1,
.col-xs-2, .col-sm-2, .col-md-2, .col-lg-2,
.col-xs-3, .col-sm-3, .col-md-3, .col-lg-3,
.col-xs-4, .col-sm-4, .col-md-4, .col-lg-4,
.col-xs-5, .col-sm-5, .col-md-5, .col-lg-5,
.col-xs-6, .col-sm-6, .col-md-6, .col-lg-6,
.col-xs-7, .col-sm-7, .col-md-7, .col-lg-7,
.col-xs-8, .col-sm-8, .col-md-8, .col-lg-8,
.col-xs-9, .col-sm-9, .col-md-9, .col-lg-9,
.col-xs-10, .col-sm-10, .col-md-10, .col-lg-10,
.col-xs-11, .col-sm-11, .col-md-11, .col-lg-11,
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

一切正常,您应该能够使用以下方法: p>

And everything works fine, you should be able to use the following:

<div class="container-fluid">
    <div class="form-group form-inline col-xs-12">
        <div class="col-xs-6"></div>
        <div class="col-xs-6"></div>
    </div>
    <div class="form-group form-inline col-xs-12">
        <div class="col-xs-6"></div>
        <div class="col-xs-6"></div>
    </div>
......
</div>

这篇关于剑道的样式窗口的内容与引导的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆