我需要更改窗口小部件value
的属性dijit/form/TextBox
,但我注意到每当我在窗口小部件上使用widget.set('value','some value');
事件change
时会发生什么。
我需要以编程方式正确地更改它,但不会触发change
事件。知道如何实现它吗?
https://jsfiddle.net/s5620bwd/6/
require(['dijit/form/TextBox', 'dojo/on'], function(TextBox, on) {
var textBox = new TextBox({
intermediateChanges: true
}, 'button');
on(textBox, 'change', function(value) {
this.set('value', value);
console.log(this.get('value')); // widget updated
});
// change value programmatically
textBox.set('value', 'value change programmatically');
});
答案 0 :(得分:2)
TextBox小部件有一个名为textbox
的属性,它对应于小部件中包含的输入元素。如果在元素上设置值,则不会触发任何事件侦听器。
require(['dijit/form/TextBox', 'dojo/on'], function(TextBox, on) {
var textBox = new TextBox({
intermediateChanges: true
}, 'button');
textBox.on('change', function(value) {
// this event handler will not fire
this.set('value', value);
console.log(this.get('value'));
});
textBox.textbox.value = 'my new value';
});
此外,要将事件处理程序附加到窗口小部件,您应该使用窗口小部件自己的on
方法来附加处理程序。