2014-10-20 52 views
0

我想捕捉事件时,有人点击编辑按钮在网格中,我想调用OnEdit函数,它不工作任何解决方案?Kendo Grid用户界面编辑值但未保存

<script>  
// When user clicks on edit button command i would like to call this function. 
function onEdit(e) { 
    alert('onEdit'); 
    } 

// Kendo grid code for populating the data from ajax call and edit function. This is starting point where all events and datasource is populated. 

$(document).ready(function() { 
      dataSource = new kendo.data.DataSource({ 
       transport: { 
        update: { // Update event 
        type: "POST", 
         url: BASE_URL + "admin/updatePublisher.htm", 
         contentType: "application/json; charset=utf-8", 
         dataType: "json" 
         success: function (result) { // success will save the data 
          options.success(result); 
         } 
        }, 
        parameterMap: function(options, operation) { // Update is clicked or created this is place it will reach. 
       }, 
       batch: true,pageSize: 50, 
       schema: { 
       type: "json", 
        model: { 
         id: "id", 
         fields: { 
          id: { 
           editable: false,nullable: true,type: "number" 
          } 
         } 
        }, 
        data: "items" // the items return from ajax 
       }, 
      }); // end of datasource 

//剑道UI $( “#电网”)kendoGrid({数据源:数据源,可导航:真,分页:真,
工具栏:[{名: “创造”,文:“添加发布商“}],//工具栏菜单 列:[{field:”publisherName“},{command:[”edit“],title:”Actions“}],editable:”inline“ }); });

回答

1

我找到了解决我的问题,希望对某人有用。编辑kendoGrid属性是解决我的问题。

 $("#grid").kendoGrid({ 
     dataSource: dataSource, 
     navigatable: true, 
     pageable: true, 
     edit  : function (e) { 
      // Write your code 
      },    
     height: 550,   
     toolbar: [{ name: "create", text: "Add Creater"}], 
     columns: [{ 
      field: "emailCreativeName", 
      title: "Email Creater", 
      width: "350px" 
     },{ command: ["edit"], title: "Actions", width: "200px" }], 
     editable: "inline" 
    });