使用InCell编辑更改Kendo UI网格中的文本输入宽度

时间:2014-08-18 07:31:46

标签: input kendo-grid edit

基本上,我有一个使用InCell编辑的kendo UI gri。这就是它的样子。

enter image description here

这是我编辑单元格时的样子。

enter image description here

这就是我想要它的样子。 我甚至不知道这是否可能,但它在我的要求清单上。有任何想法吗? enter image description here

1 个答案:

答案 0 :(得分:1)

是的你可以,使用编辑器属性

columns: [
        {
            field: "Your Field",
            title: "Your Field Name",
            width: "20%",
            editor: function (container, options) {
                $('<textarea data-bind="value: ' + options.field + '"></textarea>').appendTo(container);
            }
        },

作为文本区域行为,您可以向右和向下拖动以禁用dag到底部使用css

textarea {
    min-height: 75px;
    resize: vertical !important;
}