fixed: Form CheckList Select All button now functions correctly

This commit is contained in:
Doug Bell 2008-08-12 17:44:40 +00:00
parent f64293e530
commit 48408ac5be
2 changed files with 3 additions and 1 deletions

View file

@ -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