diff options
author | ivan <ivan> | 2007-11-09 03:26:44 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-11-09 03:26:44 +0000 |
commit | 7502ab7b99bb956013cc0e555a0d7657b3c32723 (patch) | |
tree | 1494eeb1b1370cd8bf94a2ba0a2fe802b70aca0a /httemplate/search | |
parent | f30ed1be7dccd91667712e586c517db6ab8f5b9d (diff) |
better visual indication of disabled "days" field on IE
Diffstat (limited to 'httemplate/search')
-rwxr-xr-x | httemplate/search/report_receivables.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/search/report_receivables.html b/httemplate/search/report_receivables.html index 56097534f..8040e57e6 100755 --- a/httemplate/search/report_receivables.html +++ b/httemplate/search/report_receivables.html @@ -15,8 +15,8 @@ <TR> <TD ALIGN="right">Customers</TD> <TD> - <INPUT TYPE="radio" NAME="all_customers" VALUE="1" onClick="if (this.checked) { document.OneTrueForm.days.disabled=true; } else { document.OneTrueForm.days.disabled=false; }">All customers (even those without an outstanding balance)<BR> - <INPUT TYPE="radio" NAME="all_customers" VALUE="0" CHECKED onClick="if (this.checked) { document.OneTrueForm.days.disabled=false; } else { document.OneTrueForm.days.disabled=true; }">Customers with a balance over <INPUT NAME="days" TYPE="text" SIZE=4 MAXLENGTH=3 VALUE="0"> days old + <INPUT TYPE="radio" NAME="all_customers" VALUE="1" onClick="if (this.checked) { document.OneTrueForm.days.disabled=true; document.OneTrueForm.days.style.backgroundColor = '#dddddd'; } else { document.OneTrueForm.days.disabled=false; document.OneTrueForm.days.style.backgroundColor = '#ffffff'; }">All customers (even those without an outstanding balance)<BR> + <INPUT TYPE="radio" NAME="all_customers" VALUE="0" CHECKED onClick="if ( ! this.checked ) { document.OneTrueForm.days.disabled=true; document.OneTrueForm.days.style.backgroundColor = '#dddddd'; } else { document.OneTrueForm.days.disabled=false; document.OneTrueForm.days.style.backgroundColor = '#ffffff'; }">Customers with a balance over <INPUT NAME="days" TYPE="text" SIZE=4 MAXLENGTH=3 VALUE="0"> days old </TD> </TR> |