diff options
| author | Jonathan Prykop <jonathan@freeside.biz> | 2015-10-15 21:07:34 -0500 |
|---|---|---|
| committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-11-10 18:41:12 -0600 |
| commit | 7a7776bc564aa2fb03c7c217d9e6f5fd39d8eb5f (patch) | |
| tree | 0552f8575059f704dc7cf3272cbfe15b46f74034 /httemplate/edit/cust_pkg_detail.html | |
| parent | 71852b4b08791527398656c42dcfc980891ca0b2 (diff) | |
RT#34960: Quotations [v3 merge]
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); |
