summaryrefslogtreecommitdiff
path: root/httemplate/edit/cust_pkg_detail.html
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2015-10-15 21:07:34 -0500
committerJonathan Prykop <jonathan@freeside.biz>2015-10-15 21:07:34 -0500
commitb6f16a22bd93ec66ffbb1da30e63f7e950b3b819 (patch)
tree88dc077ac63271cb2df290bbd20069acfdd71615 /httemplate/edit/cust_pkg_detail.html
parent2b2dd969f3c18751afc583ad1e836ab8e6f73b5d (diff)
RT#34960: Quotations
Diffstat (limited to 'httemplate/edit/cust_pkg_detail.html')
-rw-r--r--httemplate/edit/cust_pkg_detail.html3
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);