1

我有一个非常基本的剑道网格。我正在使用模板功能来设置单元格数据的样式。我想要做的是红色的“编辑”样式和绿色的“删除”样式。

网格代码

grid = $("#grid").kendoGrid({
        dataSource: {
            data: createRandomUserData(),
            schema: {
                model: {
                    id: 'Id',
                    fields: {
                        FirstName: {
                            type: "string"
                        },
                        Action: {
                            type: "string"
                        }
                    }
                }
            }
        },
        columns: [
            {
                field: "FirstName",
                title: "First Name"
            },
            {
                field: "Action",
                title: "Action",
                template: "<span style='color:red'>#: Action #</span>"
            }
        ]
    }).data("kendoGrid");

我该怎么做。我无法分离单元格数据。

JSFiddle - http://jsfiddle.net/Sbb5Z/1338/

4

1 回答 1

3

我建议您不要直接应用颜色,而是定义几个进行样式设置的 CSS 类。

例子:

.Edit {
    color: red;
}

.Delete {
    color: green;
}

.Edit.Delete {
    color: blue;
}

并在模板中指定class使用哪个。

template: "<span class='#: Action #'>#: Action #</span>"

red在它们是EditgreenifDeleteblueif 时使用。

你在这里修改了JSFiddle:http: //jsfiddle.net/OnaBai/298nZ/

编辑:如果你想按单词分割/格式化,那么你需要一点编程。基本上你可以这样做。

// Convert words separated by spaces into an array
var words = data.Action.split(" ");
// Iterate on array elements for emitting the HTML
$.each(words, function(idx, word) {
    // emit HTML using template syntax
    <span class="#: word #">#: word #</span>
});

所有这些都需要包装在一个模板中,你会得到:

<script type="text/kendo-script" id="template">
    # console.log("data", data, data.Action); #
    # var words = data.Action.split(" "); #
    # $.each(words, function(idx, word) { #
        <span class='#= word #'>#= word #</span>&nbsp;
    # }); #
</script>

你的网格定义:

grid = $("#grid").kendoGrid({
    dataSource: {
        data: createRandomUserData(),
        schema: {
            model: {
                id: 'Id',
                fields: {
                    FirstName: {
                        type: "string"
                    },
                    Action: {
                        type: "string"
                    }
                }
            }
        }
    },
    columns: [
        {
            field: "FirstName",
            title: "First Name"
        },
        {
            field: "Action",
            title: "Action",
            template: $("#template").html()
        }
    ]
}).data("kendoGrid");

JSFiddle 在这里修改:http: //jsfiddle.net/298nZ/1/

于 2014-04-07T13:50:38.200 回答