0

我正在使用 Kendo MVVM,并且我有一个绑定到 kendo observable 的 kendo numerictextbox。我想要的是:当用户更改值时,应该弹出一个确认,说“你确定吗?” 如果是 -> 没问题,继续。如果没有 -> 什么都不会发生!

从理论上讲,这听起来很简单……但我发现了 3 个主要问题:

1) numerictextbox 只得到 2 个事件:旋转和更改......所以使用按键/焦点/或任何其他事件的任何想法都被丢弃。

2)所以尝试使用更改事件......但我无法阻止默认!另一种尝试是保存以前的值并在“无应答”的情况下将其恢复,但这让我触发了事件更改两次!

3)任何其他“观察”数字文本框的模型字段都会在我回答确认框之前发生变化......而且我绝对不想要这个!

PS我还有一个下拉列表和一个必须以相同方式工作的日期选择器!

请帮忙!

提供了一个快速示例:http : //dojo.telerik.com/EyItE 在这里您可以看到 numericbox2(正在观察 numericbox1 并被计算)在用户回答是/否(问题 3)和 keypress/focus/ 之前如何改变自身preventDefault 不起作用。

4

2 回答 2

0

这是关于默认情况下不支持的绑定事件的答案: Kendo MVVM and binding or extension custom events

对于 preventDefault (或“恢复”该值)。我尝试按照您的建议存储先前的值,但它不会触发两次:

var viewModel = kendo.observable({
    myItem: { 
      // fields, etc
      myNumericBox: 10,
      myNumericBox2: function () {
        return viewModel.get("myItem.myNumericBox")*2;
      },
      tmp: 10
    },
    onChange: function (e) {
        if ( confirm("are you sure?")) {
                viewModel.set("myItem.tmp", viewModel.get("myItem.myNumericBox"));
          }
          else {
              viewModel.set("myItem.myNumericBox", viewModel.get("myItem.tmp"));

          }
    },
  tryf: function () {
    alert("hello!"); // doesn't trigger
  },
  tryk: function() {
    alert("hello2!"); // doesn't trigger
  }

});
于 2015-07-24T12:51:08.073 回答
0

我解决了一个自定义绑定,该绑定要求您在 html 小部件更改 -> 模型更新之间进行确认。

kendo.data.binders.widget.valueConfirm = kendo.data.Binder.extend({
            init: function (widget, bindings, options) { // start
                kendo.data.Binder.fn.init.call(this, widget.element[0], bindings, options);
                this.widget = widget;
                this._change = $.proxy(this.change, this);
                this.widget.bind("change", this._change); // observe
            },
            refresh: function () { // when model change
                if (!this._initChange) {
                    var widget = this.widget;
                    var value = this.bindings.valueConfirm.get(); // value of the model
                    if (widget.ns == ".kendoDropDownList") { // for the dropdown i have to use select
                        widget.select(function (d) {
                            return d.id == value.id;
                        });
                    }
                    else widget.value(value); // update widget
                }
            },
            change: function () { // when html item change
                var widget = this.widget;
                if (widget.ns == ".kendoDropDownList") var value = widget.dataItem(); // for dropdown i need dataitem
                else var value = widget.value();

                var old = this.bindings.valueConfirm.get();
                    this._initChange = true;
                    // I want to bypass the confirm if the value is not valid (for example after 1st load with blank values).
                    if (old == null || old == 'undefined' || old == 'NaN') this.bindings.valueConfirm.set(value); // Update the View-Model
                    else {
                        if (confirm("Are you sure?")) {
                            this.bindings.valueConfirm.set(value); // Update the View-Model
                        }
                        else {
                            this._initChange = false;
                            this.refresh(); // Reset old value
                        }
                    }
                this._initChange = false;
            },
            destroy: function () { // dunno if this is useful
                this.widget.unbind("change", this._change);
            }
        });
于 2015-07-29T10:24:37.607 回答