From: ivan Date: Wed, 14 Feb 2007 21:23:53 +0000 (+0000) Subject: grey out disabled text boxes for IE X-Git-Tag: TRIXBOX_2_6~640 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=6309b438373b226e3bc4ec8406a64154f87e1ccd grey out disabled text boxes for IE --- diff --git a/httemplate/search/report_cust_pkg.html b/httemplate/search/report_cust_pkg.html index a2316e257..5b2efa2ca 100755 --- a/httemplate/search/report_cust_pkg.html +++ b/httemplate/search/report_cust_pkg.html @@ -31,6 +31,8 @@ what.form.<% $field %>_beginning_text.disabled = true; what.form.<% $field %>_ending_text.disabled = true; + what.form.<% $field %>_beginning_text.style.backgroundColor = '#dddddd'; + what.form.<% $field %>_ending_text.style.backgroundColor = '#dddddd'; what.form.<% $field %>_beginning_button.style.display = 'none'; what.form.<% $field %>_ending_button.style.display = 'none'; @@ -41,6 +43,8 @@ what.form.<% $field %>_beginning_text.disabled = false; what.form.<% $field %>_ending_text.disabled = false; + what.form.<% $field %>_beginning_text.style.backgroundColor = '#ffffff'; + what.form.<% $field %>_ending_text.style.backgroundColor = '#ffffff'; what.form.<% $field %>_beginning_button.style.display = ''; what.form.<% $field %>_ending_button.style.display = '';