如何在创建后创建列字段readOnly?

时间:2014-09-26 13:43:39

标签: ignite-ui iggrid

我想在创建网格行之后创建一个行字段readOnly。我想让它在editMode' row'并且' rowedittemplate'。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

您需要在更新功能中配置列设置,并将readOnly设置为true以更新您想要不可编辑的列:

$(element).igGrid({
    features: [
        {
            name: "Updating",
            columnSettings: [
                { columnKey: "Key", readOnly: true }
            ]
        }
    ]
});

Here's the API docs.