src/pyams_skin/resources/js/myams.js
changeset 174 1e8bbcc06a2f
parent 173 087f22a85c26
child 179 d381c4c035cd
--- a/src/pyams_skin/resources/js/myams.js	Fri Dec 02 14:20:24 2016 +0100
+++ b/src/pyams_skin/resources/js/myams.js	Fri Dec 09 11:49:52 2016 +0100
@@ -2,7 +2,7 @@
  * MyAMS
  * « My Application Management Skin »
  *
- * $Tag$ (rev. 16)
+ * $Tag$ (rev. 17)
  * A bootstrap based application/administration skin
  *
  * Custom administration and application skin tools
@@ -5071,6 +5071,11 @@
 		// Initialize custom change handlers
 		$(document).on('change', '[data-ams-change-handler]', function(e) {
 			var source = $(this);
+			// Disable change handlers for readonly inputs
+			// These change handlers are activated by IE!!!
+			if (source.prop('readonly')) {
+				return;
+			}
 			var handlers = source.data('ams-disabled-handlers');
 			if ((handlers === true) || (handlers === 'change') || (handlers === 'all')) {
 				return;