我想在创建网格行之后创建一个行字段readOnly。我想让它在editMode' row'并且' rowedittemplate'。我怎么能这样做?
答案 0 :(得分:1)
您需要在更新功能中配置列设置,并将readOnly设置为true以更新您想要不可编辑的列:
$(element).igGrid({
features: [
{
name: "Updating",
columnSettings: [
{ columnKey: "Key", readOnly: true }
]
}
]
});