summaryrefslogtreecommitdiff
path: root/addons/mail/static/src/js/field_char.js
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/mail/static/src/js/field_char.js
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/mail/static/src/js/field_char.js')
-rw-r--r--addons/mail/static/src/js/field_char.js56
1 files changed, 56 insertions, 0 deletions
diff --git a/addons/mail/static/src/js/field_char.js b/addons/mail/static/src/js/field_char.js
new file mode 100644
index 00000000..1a1b90ec
--- /dev/null
+++ b/addons/mail/static/src/js/field_char.js
@@ -0,0 +1,56 @@
+odoo.define('sms.onchange_in_keyup', function (require) {
+"use strict";
+
+var FieldChar = require('web.basic_fields').FieldChar;
+FieldChar.include({
+
+ //--------------------------------------------------------------------------
+ // Public
+ //-------------------------------------------------------------------------
+
+ /**
+ * Support a key-based onchange in text field. In order to avoid too much
+ * rpc to the server _triggerOnchange is throttled (once every second max)
+ *
+ */
+ init: function () {
+ this._super.apply(this, arguments);
+ this._triggerOnchange = _.throttle(this._triggerOnchange, 1000, {leading: false});
+ },
+
+
+ //--------------------------------------------------------------------------
+ // Handlers
+ //--------------------------------------------------------------------------
+
+ /**
+ * Trigger the 'change' event at key down. It allows to trigger an onchange
+ * while typing which may be interesting in some cases. Otherwise onchange
+ * is triggered only on blur.
+ *
+ * @override
+ * @private
+ */
+ _onKeydown: function () {
+ this._super.apply(this, arguments);
+ if (this.nodeOptions.onchange_on_keydown) {
+ this._triggerOnchange();
+ }
+ },
+
+ //--------------------------------------------------------------------------
+ // Private
+ //--------------------------------------------------------------------------
+
+ /**
+ * Triggers the 'change' event to refresh the value. Throttled at init to
+ * avoid spaming server.
+ *
+ * @private
+ */
+ _triggerOnchange: function () {
+ this.$input.trigger('change');
+ },
+});
+
+});