我正在尝试自定义和扩展 datepicker。首先,我通过 customValue 扩展了 Binder:
kendo.data.binders.widget.customValue = kendo.data.Binder.extend({
init: function (element, bindings, options) {
kendo.data.Binder.fn.init.call(this, element, bindings, options);
},
refresh: function(e){
var path = this.bindings.customValue.path,
source = this.bindings.customValue.source,
value = source.get(path);
this.element.value(value);
},
change: function(e){
// this method is not triggered
debugger;
}
});
然后我扩展了 DatePicker 小部件:
CustomDatePicker = kendo.ui.DatePicker.extend({
init: function(element, options) {
kendo.ui.DatePicker.prototype.init.call(this, element, options);
this.bind('change', this.onChange);
},
options: {
name: "CustomDatePicker",
},
onChange: function(e){
debugger;
},
});
kendo.ui.plugin(CustomDatePicker);
当视图模型更改时,会触发自定义绑定器的“刷新”方法,因此数据可以从视图模型流向小部件。它运作良好。但是我在从小部件绑定到视图模型(反向流)时遇到问题。起初我认为 datepicker 中的更改触发了“customValue”活页夹中的“更改”方法,但事实并非如此。触发了 CustomDatePicker.onChange 方法,但其中的视图模型超出了范围,因此无法设置视图模型。我的问题是,当小部件的值发生变化时,如何更新视图模型?感谢您的建议。
仅用于插图小部件的初始化如下:
<input
data-role="datepickercustom"
data-bind="customValue: data"
data-format="dd.MM.yyyy" />