2013-03-17 120 views
3

我有一个网格,每行都有一个带有值的选择下拉框。下拉选择Kendo UI Grid Refesh

当一个项目被选中时,我怎样才能让网格重新加载来反映变化?

我想这样做的原因是因为从下拉作用在另一列中的金额选择的项目。

这里是我的下拉代码:

function shippingModelSelect(container, options) 
{ 
    $('<input required data-text-field="modelName" data-value-field="modelId" data-bind="value:' + options.field + '"/>') 
    .appendTo(container) 
    .kendoDropDownList({ 
     autoBind: false, 
     dataSource: [ 
     { 
      "modelName": "Individual shipping cost", 
      "modelId": 1 
     }, 
     { 
      "modelName": "Based on weight", 
      "modelId": 2 
     }, 
     { 
      "modelName": "Based on value", 
      "modelId": 3 
     } 
     ], 
     close: function() 
     { 
      handleChange();    
     } 
    }); 
} 

我办理变更功能:

var gridAlert = $('#gridAlert'); 
var handleChange = function(input, value) { 
    if(input && value) 
    { 
     detail = 'Product <b>'+input[0].name+'</b> changed to <b>'+value+'</b>'; 
     gridAlert.html('<b>Changes saved!</b><p>'+detail+'</p>'); 
     gridAlert.fadeIn('slow', function(){ 
      setTimeout(function(){ 
       gridAlert.fadeOut(); 
      }, 2000) 
     }); 
    } 
    dataSource.sync(); 
} 

最后我的网格设置:

dataSource = new kendo.data.DataSource({ 
    serverPaging: true, 
    serverSorting: true, 
    serverFiltering: true, 
    serverGrouping: true, 
    serverAggregates: true, 
    transport: { 
     read: { 
      url: ROOT+'products/manage' 
     }, 
     update: { 
      url: ROOT+'products/set-product', 
      type: "POST", 
      data: function(data) 
      { 
       data.dateAdded = kendo.toString(data.dateAdded, 'yyyy-MM-dd hh:ii:ss') 
       return data; 
      } 
     } 
    }, 
    pageSize: 20, 
    sort: { 
     field: 'id', 
     dir: 'desc' 
    }, 
    error: function(e) { 
     alert(e.errorThrown+"\n"+e.status+"\n"+e.xhr.responseText) ; 
    }, 
    schema: { 
     data: "data", 
     total: "rowcount", 
     model: { 
      id: "id", 
      fields: { 
       id: { 
        type: 'number', 
        editable: false 
       }, 
       SKU: { 
        type: "string" 
       }, 
       name: { 
        type: "string" 
       }, 
       dateAdded: { 
        type: "date", 
        format: "{0:yyyy/MM/dd hh:mm}", 
        editable: false 
       }, 
       shippingModel: { 
        type: "string" 
       }, 
       shippingModelId: { 
        type: "number" 
       }, 
       price: { 
        type: "number" 
       } 
      } 
     } 
    } 
}) 

$('#productGrid').kendoGrid({ 
    dataSource: dataSource, 
    autoBind: true, 
    columns: [ 
    { 
     field: "image", 
     title: "Image", 
     width: 30, 
     template: "#= '<img title=\"'+alt+'\" src=\"images/'+image+'\"/>' #" 
    }, 
    { 
     field: "SKU", 
     title: "SKU", 
     width: 50, 
     headerTemplate: "<abbr title=\"Stock Keeping Unit - A unique identifier for this product\">SKU</abbr>" 
    }, 
    { 
     field: "stockQuantity", 
     title: "Quantity",   
     width: 30 
    }, 
    { 
     field: "name", 
     title: "Name", 
     width: 200 
    }, 
    { 
     field: "dateAdded", 
     title: "Date Added", 
     width: 80, 
     template: "#= niceDate #" 
    }, 
    { 
     field: "shippingModelId", 
     title: "Shipping Model", 
     width: 50, 
     editor: shippingModelSelect, 
     template: "#= shippingModel #" 
    }, 
    { 
     field: "price", 
     title: "Price", 
     width: 80, 
     //format: "{0:c}", 
     template: "#= '&pound;'+price.toFixed(2)+'<br /><span class=\"grey\">+&pound;'+shipping+' shipping</span>' #" 
    } 
    ], 
    sortable: true, 
    editable: true, 
    pageable: { 
     refresh: true, 
     pageSizes: [10, 20, 50] 
    }, 
    scrollable: false, 
    reorderable: true, 
    edit: function(e) { 
     var value;   
     var numericInput = e.container.find("[data-type='number']"); 

     // Handle numeric 
     if (numericInput.length > 0) 
     { 
      var numeric = numericInput.data("kendoNumericTextBox");  

      numeric.bind("change", function(e) { 
       value = this.value(); 
       handleChange(numericInput, value); 
      }); 

      return; 
     } 

     var input = e.container.find(":input"); 

     // Handle checkbox 
     if (input.is(":checkbox")) 
     { 
      value = input.is(":checked"); 
      input.change(function(){ 
       value = input.is(":checked"); 
       handleChange(input, value); 
      }); 
     } 
     else 
     {   
      // Handle text 
      value = input.val(); 
      input.keyup(function(){ 
       value = input.val(); 
      }); 
      input.change(function(){ 
       value = input.val(); 
      }); 

      input.blur(function(){ 
       handleChange(input, value); 
      }); 
     } 
    } 
} 
) 

回答

4

你需要做两的东西。

  1. 等待修改完成同步
  2. 告诉电网重新读取数据源

这应该为你

dataSource.bind("sync", function(e) { 
    $('#productGrid').data("kendoGrid").dataSource.read(); 
}); 

做到既欲了解更多信息请参阅datasource sync eventdatasource read method在他们的文档站点。

+0

完美!谢谢。 – imperium2335 2013-03-17 18:40:28