3

我正在为我的门户网站使用剑道网格网格的代码是

 //Grid for award adding
    var griddataSource = new kendo.data.DataSource({
        dataType: "json",
        transport: {
            read: function(o){
                    //o.success([]);
                    url: ServiceBaseUrl+"/Magazine/getsubscriptiondetails?magazineid="+magazine_id, 
                    dataType: "json",
                },
            create: function(o) {                      
                var item = o.data;
                //assign a unique ID and return the record
                item.id =  len;
                o.success(item);
                len++;
            },
            destroy: function(o) {
                o.success();
            },
            update: function(o){
                o.success();
            }         
        },                      
        autoSync: false,
        schema: {                       
        model: {
        id    : "id",
        fields: {

                        magazine_subscription_id: { editable: true},
                        no_of_issues:{editable: true, type:"number", validation: {
                            required: {
                                message: "No of issues required"
                            },
                            min: 1
                        }
                        },
                        subscription_name: { editable: true, type:"string", validation: {
                            required: {
                                message: "Package Name required"
                            }
                            } 
                        },
                        subscription_key: { editable: true, type:"string", validation: { 
                            required: {
                                message: "Subscription Key required"
                            }
                        } },
                        price_inr: { type: "number", validation: { 
                            required: {
                                message: "Price(INR) Key required"
                            }, min: .1} },
                        price: { type: "number", validation: { 
                            required: {
                                message: "Price($) Key required"
                            },
                            min: .1} },
                        discount_type: { type:"string", editable: true, nullable: false},
                        discount_no_of_free_issue: { type: "number" ,validation: { min: 1}}

        }      
        }
        }
    });

    $("#grid").kendoGrid({
    dataSource: griddataSource,
    pageable: false,
    selectable: "multiple",
    sortable: true,
    filterable: false,
    reorderable: true,
    scrollable: false,
    toolbar: ["create"],

    columns: 
    [
        { field: "no_of_issues", title: "No. of issues", width: "100px", format: ""},
        { field: "subscription_name", title: "Package Name", width: "150px" },
        { field: "subscription_key", title: "Subscription Key", width: "150px" },
        { field: "price_inr", title: "Price (INR)", width: "75px" },
        { field: "price", title: "Price ($)", width: "75px" },
        { field: "discount_type", title: "Type", width: "150px", values: type},
        { field: "discount_no_of_free_issue", title: "Discount / No. of Issues", width: "150px", format: ""},
        { command: ["edit", "destroy"], title: " ", width: "210px" }
    ],
    editable: "inline"
    });

网格正确显示内容。但是当我在网格中添加一条新记录时,会显示一个错误

 Uncaught SyntaxError: Unexpected number

如果有人知道这一点,请帮助我

提前致谢

4

3 回答 3

4

正如我在基本示例中看到的,列定义的参数宽度应该是数字而不是字符串

 { field: "no_of_issues", title: "No. of issues", width: 100 },

UPD:正如 Pavel Petrman 所说,现在可以使用字符串宽度来设置适当的比例。例如这里作者使用“px”,您也可以使用相对点(“100%”)。

于 2013-04-03T08:45:21.527 回答
0

我刚刚遇到了这个问题。这个问题很容易解决,但很难追查。所以我通过提供摆脱了错误

create: function(options) {    
    options.success({ID:x});
}

其中 x 是有效的(在我的情况下它是一个字符串)。

没关系,对象中有其他东西:

options.success({ID:x, foo:bar, ... , stuff: {}, ...})

重要的是与您的模型 ID 设置相对应的有效 ID(同样,在我的情况下

schema: {
    model: {
       id: "ID",

)。

所以关于这个特定的问题,我会检查len参数。

于 2014-01-30T14:17:20.033 回答
0

我得到了这种错误的列映射错误。我有

 columns: [
 {
     field: 'Name',
     template: vm.categoryNameTreeTemplate
 },
 { field: 'Description' },
 { field: 'Category Code' }, -- this one is wrong
 { field: 'IsDeleted' },
 { command: ['create', 'edit'] }
]

但正确的版本是

columns: [
 {
     field: 'Name',
     template: vm.categoryNameTreeTemplate
 },
 { field: 'Description' },
 { field: 'CategoryCode' },  -- correct
 { field: 'IsDeleted' },
 { command: ['create', 'edit'] }
]
于 2020-11-25T08:50:36.683 回答