$("#grid").kendoGrid({
height: 400,
width: 400,
columns: [{
field: "id"
},{
field: "question"
},{
field: "order"
},{
field: "type"
},{
command: [ "edit" , "destroy"],
width: 280
}],
dataSource: {
type: "Data",
transport: {
read: {
url: "@Url.Action("getAlldetails","IPPFnew")"
}
}
}
});
This is my code but I get the below error:
0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'slice'
User contributions licensed under CC BY-SA 3.0