diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-10-15 21:07:34 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-10-15 21:07:34 -0500 |
commit | b6f16a22bd93ec66ffbb1da30e63f7e950b3b819 (patch) | |
tree | 88dc077ac63271cb2df290bbd20069acfdd71615 /httemplate/edit/cust_pkg_detail.html | |
parent | 2b2dd969f3c18751afc583ad1e836ab8e6f73b5d (diff) |
RT#34960: Quotations
Diffstat (limited to 'httemplate/edit/cust_pkg_detail.html')
-rw-r--r-- | httemplate/edit/cust_pkg_detail.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/edit/cust_pkg_detail.html b/httemplate/edit/cust_pkg_detail.html index 5e107066d..b1e60dad5 100644 --- a/httemplate/edit/cust_pkg_detail.html +++ b/httemplate/edit/cust_pkg_detail.html @@ -46,7 +46,7 @@ <TR> <TD></TD> <TD> - <INPUT TYPE="text" NAME="detail<% $row %>" SIZE="60" MAXLENGTH="65" VALUE="<% $_->detail |h %>" rownum="<% $row++ %>" onkeyup = "possiblyAddRow;" > + <INPUT TYPE="text" NAME="detail<% $row %>" SIZE="60" MAXLENGTH="65" VALUE="<% $_->detail |h %>" rownum="<% $row++ %>" onkeyup="possiblyAddRow" onchange="possiblyAddRow" > </TD> </TR> @@ -88,6 +88,7 @@ detail_input.setAttribute('maxLength', 65); detail_input.setAttribute('rownum', rownum); detail_input.onkeyup = possiblyAddRow; + detail_input.onchange = possiblyAddRow; detail_cell.appendChild(detail_input); row.appendChild(detail_cell); |