diff --git a/VERSIONS_HOTLINE/64747 b/VERSIONS_HOTLINE/64747 new file mode 100644 index 0000000000000000000000000000000000000000..e77bd740cc5c0a90ebfc4b1c8e6b9154c75f9d20 --- /dev/null +++ b/VERSIONS_HOTLINE/64747 @@ -0,0 +1 @@ + - ticket #64747 : correction du paramétrage de la boîte articles en backoffice \ No newline at end of file diff --git a/library/Class/ScriptLoader.php b/library/Class/ScriptLoader.php index 92a1901fe6ded261762db6c079d979ba24111d42..e1c1c57c05f607a5ca01bd65add06dc7515b9a00 100644 --- a/library/Class/ScriptLoader.php +++ b/library/Class/ScriptLoader.php @@ -835,7 +835,7 @@ class Class_ScriptLoader { public function onFormChangeDo($node, $callback) { return $this ->addOPACPluginScript('on_form_change_do/on_form_change_do.js') - ->addJQueryReady(sprintf('$("%s").on_form_change_do(%s)', + ->addJQueryReady(sprintf('$("%s").each(function(i, el) { $(el).on_form_change_do(%s) })', $node, json_encode(['callback' => $callback]))); } diff --git a/library/ZendAfi/Form/Configuration/Widget/Articles.php b/library/ZendAfi/Form/Configuration/Widget/Articles.php index 5a93a5cf0f98bca840b171c8b3c3306f8d0bd9bb..5898df1e684c70b4db0d38270852a7597ba0f91b 100644 --- a/library/ZendAfi/Form/Configuration/Widget/Articles.php +++ b/library/ZendAfi/Form/Configuration/Widget/Articles.php @@ -59,9 +59,9 @@ class ZendAfi_Form_Configuration_Widget_Articles extends ZendAfi_Form_Configurat Class_ScriptLoader::getInstance() ->addJQueryReady( - 'formSelectToggleVisibilityForElement("input[name=\'display_order\']", "#fieldset-datas tr:nth-child(2)", ["DateCreationDesc", "DebutPublicationDesc", "EventDebut", "Random", "CommentCount"]);' + 'formSelectToggleVisibilityForElement("input[name=\'display_order\']", "#fieldset-display_settings_group tr:nth-child(2)", ["DateCreationDesc", "DebutPublicationDesc", "EventDebut", "Random", "CommentCount"]);' - . 'formSelectToggleVisibilityForElement("input[name=\'display_order\']", "#fieldset-datas tr:nth-child(3)", "Random");' + . 'formSelectToggleVisibilityForElement("input[name=\'display_order\']", "#fieldset-display_settings_group tr:nth-child(3)", "Random");' . 'checkBoxToggleVisibilityForElement("#allow_link_on_title", $("#anchor").closest("tr"), true);'); } diff --git a/public/admin/js/global.js b/public/admin/js/global.js index 64384af5a9443a123b1e91d864a91a908a12496f..d1a37eeed668756b24891a9ed01b66017f6e95e0 100644 --- a/public/admin/js/global.js +++ b/public/admin/js/global.js @@ -172,14 +172,14 @@ function getElementsByClassName(strClass, strTag, objContElm) { } -function formSelectToggleVisibilityForElement(element, toggle, value) { - if (!(value instanceof Array)) - value = [value]; +function formSelectToggleVisibilityForElement(eventSourceSelector, objectToShowSelector, visibleForValues) { + if (!(visibleForValues instanceof Array)) + visibleForValues = [visibleForValues]; - return toggleVisibilityForElement(element, - toggle, + return toggleVisibilityForElement(eventSourceSelector, + objectToShowSelector, function(element) { - return 0 <= $.inArray(element.val(), value); + return 0 <= $.inArray(element.val(), visibleForValues); }); } @@ -197,19 +197,19 @@ function checkBoxToggleVisibilityForElement(eventSourceSelector, objectToShowSel function toggleVisibilityForElement(eventSourceSelector, objectToShowSelector, testingAlgorithm) { var objectToShow = $(objectToShowSelector); - var source_object = $(eventSourceSelector); + var sourceObject = $(eventSourceSelector); - var toggleVisibility = function() { - return testingAlgorithm(source_object) + var toggleVisibility = function(element) { + return testingAlgorithm(element) ? objectToShow.fadeIn() : objectToShow.fadeOut(); } - $(source_object).change(function() { - return toggleVisibility(); + sourceObject.change(function(event) { + return toggleVisibility($(event.target)); }); - source_object.change(); + sourceObject.change(); }