changeset 3b4ff20f6f1d in sao:6.2
details: https://hg.tryton.org/sao?cmd=changeset&node=3b4ff20f6f1d
description:
        Connect from of Between using change event

        We do not use any more tempusdominus so the dp.change event does not 
exist
        anymore.

        issue11020
        review374401005
        (grafted from d17fdbfd65e371281675511620c2d434e1f2c4a2)
diffstat:

 src/screen.js |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 7965517652ff -r 3b4ff20f6f1d src/screen.js
--- a/src/screen.js     Thu Dec 16 22:14:22 2021 +0100
+++ b/src/screen.js     Thu Dec 16 22:16:01 2021 +0100
@@ -638,7 +638,7 @@
         init: function(format, id) {
             this.format = format;
             Sao.ScreenContainer.BetweenDates._super.init.call(this, id);
-            this.from.on('dp.change', this._from_changed.bind(this));
+            this.from.change(this._from_changed.bind(this));
         },
         _get_value: function(entry, value) {
             return entry.find('input[type=text]').val();

Reply via email to