Changed email type to check onChange rather than onBlur
Changed SQL Report to fix a pagination bug.
This commit is contained in:
parent
ab20fd1cef
commit
dddb2ef345
2 changed files with 3 additions and 3 deletions
|
|
@ -417,7 +417,7 @@ sub email {
|
|||
$size = shift || $session{setting}{textBoxSize} || 30;
|
||||
$output = '<script language="javascript" src="'.$session{config}{extras}.'/emailCheck.js"></script>';
|
||||
$output .= '<input type="text" name="'.$name.'" value="'.$value.'" size="'.
|
||||
$size.'" maxlength="'.$maxLength.'" onBlur="emailCheck(this.value)" '.$extras.'>';
|
||||
$size.'" maxlength="'.$maxLength.'" onChange="emailCheck(this.value)" '.$extras.'>';
|
||||
$output .= _subtext($subtext);
|
||||
$output = _tableFormRow($label,$output) unless ($class->{_noTable});
|
||||
$class->{_data} .= $output;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue