From b9038925a8ed2ceaf3fc0609006ee382c6cb62ae Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Fri, 13 Jun 2014 11:36:46 +0000 Subject: [PATCH] Add jQuery onchange handler for tz_selection selectbox in idots --- phpgwapi/templates/idots/js/idots.js | 1 + 1 file changed, 1 insertion(+) diff --git a/phpgwapi/templates/idots/js/idots.js b/phpgwapi/templates/idots/js/idots.js index dd4defd1d5..bbfe7a895d 100644 --- a/phpgwapi/templates/idots/js/idots.js +++ b/phpgwapi/templates/idots/js/idots.js @@ -107,5 +107,6 @@ egw_LAB.wait(function() { jQuery('#thesideboxcolumn').resizable({handles: 'e', minWidth: 200, stop: function(event, ui){ egw.set_preference(egw_appName, 'idotssideboxwidth', ui.size.width); }}); + jQuery('form[name^="tz_selection"]').children().on('change', function(){this.form.submit();}); }); });