Kendo Grid Change显示值

时间:2016-09-20 19:17:41

标签: mvvm kendo-ui kendo-grid

给出初始化和显示的Kendo Grid。我想在detailExpand或detailCollapse事件发生时更改列上的值。如何更改显示值?这是一个MVVM初始化网格,但似乎对数据源的更改不会更新网格中显示的值。非常适合数据绑定。

OnDetailCollapse: function(e) {
    var self = ScenarioManager.MasterGridViewModel;

    var data = e.sender.dataItem(e.masterRow);

    var product = self.FindProductById(self.get('Products').data(), data.Id);

    product.set('MrcDisplay', product.MrcSubTotal); // This does nothing
    product.set('NrcDisplay', product.NrcSubTotal); // This does nothing
},

0 个答案:

没有答案