1

我的架构有以下代码:

schema: {
                model: {
                    fields: {
                        col1: {
                            type: "string", editable: true, nullable: false,
                            validation:{ required: { message: "Name is Required." } }
                        },
                        col2: {
                            type: "string", editable: true, nullable: false,
                            validation:{ required: { message: "Please Select a Main Language." } }
                        },
                        col3:{
                            type: "Array[]", editable: true, nullable: false,
                            validation:{ required: { message: "Please Select Supported Language(s)." } }
                        },
                        col4: {
                            type: "string", editable: false, nullable: true
                        },
                        col5: {
                            type: "string", editable: false, nullable: true
                        }
                    }
                }
            }

列代码片段

{
                    field: "col4",
                    title: "Column4",
                    width:"200px",
                    editable:false,
                    nullable: true
                },
                {
                    field: "col5",
                    title: "Column5",
                    width:"200px",
                    editable:false,
                    nullable: true
                }

我想禁用最后两个(状态和未本地化计数)。如您所见,我已经使用了可编辑和可空的。我的目标是发送一个没有这两个 JSON 格式的 HTTP 帖子

{"col1":"string", "col2":"string","col3":["string"]}
4

2 回答 2

0

更新:我使用了一个有功能的编辑器。

function(container){

  $('label[for=status]').parent().remove();

}

现在看起来像这样

{
  field: "status",
  title: "Status",
  editable:false,
  editor:function(container){
                       $('label[for=status]').parent().remove();
                   }
}
于 2013-11-26T16:51:21.967 回答
0

Kendo 的方法是在 kendoGridSource中添加名为Edit的字段,如下所示:

edit: function (e) {
           e.container.find('[for="none"]').parent().remove();
           e.container.find('[data-container-for="none"]').remove();
 },

在那里,您将查找具有for="none"并删除所有字段的字段,容器也是如此。

然后在您的架构中,您要编辑的字段:

{
  field: "none",
  title: "Column5",
  width:"200px",
},
于 2016-10-03T21:13:29.967 回答