fixed: Form CheckList Select All button now functions correctly
This commit is contained in:
parent
f64293e530
commit
48408ac5be
2 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
3
www/extras/yui-webgui/build/form/form.js
vendored
3
www/extras/yui-webgui/build/form/form.js
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue