From 48408ac5becc9f7e4e4e92f3e083ab357b0f2f20 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Tue, 12 Aug 2008 17:44:40 +0000 Subject: [PATCH] fixed: Form CheckList Select All button now functions correctly --- docs/changelog/7.x.x.txt | 1 + www/extras/yui-webgui/build/form/form.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index f44592f36..e496700ec 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -15,6 +15,7 @@ - fixed: WSClient now correctly handles SOAP::Som returns of simple arrays of scalars and a exception producing if test turned into an eval. - fixed: Gallery now gives an error message when a Zip archive is being naughty - fixed: Upgrade 7.5.10-7.5.11 upgrades transaction payment gateway info. + - fixed: Form CheckList select all button now functions properly 7.5.19 - fixed: paginator doesn't show correct number of page links with a limit applied diff --git a/www/extras/yui-webgui/build/form/form.js b/www/extras/yui-webgui/build/form/form.js index 200ef4498..ff52b6f3a 100644 --- a/www/extras/yui-webgui/build/form/form.js +++ b/www/extras/yui-webgui/build/form/form.js @@ -33,7 +33,8 @@ WebGUI.Form.toggleAllCheckboxesInForm // Change the state input.checked = state; // Run the appropriate scripts - input.onchange(); + if ( input.onchange ) + input.onchange(); } // Update the saved state