[freeside-commits] branch FREESIDE_4_BRANCH updated. ee6e93f7d4fc9368eda5443796f2c99cf5d0ead9
Christopher Burger
burgerc at freeside.biz
Wed Apr 17 10:36:43 PDT 2019
The branch, FREESIDE_4_BRANCH has been updated
via ee6e93f7d4fc9368eda5443796f2c99cf5d0ead9 (commit)
via eaaf2aa8002c28fc58fd9a6946060b0883882303 (commit)
from 52181140b967f905e9fac6f7d33b16b93fa1c420 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit ee6e93f7d4fc9368eda5443796f2c99cf5d0ead9
Author: Christopher Burger <burgerc at freeside.biz>
Date: Wed Apr 17 13:08:34 2019 -0400
RT# 75357 - added rows now have same style as original row
diff --git a/httemplate/edit/elements/edit.html b/httemplate/edit/elements/edit.html
index a960172d7..27ed0f5d7 100644
--- a/httemplate/edit/elements/edit.html
+++ b/httemplate/edit/elements/edit.html
@@ -701,7 +701,7 @@ Example:
var row = table.insertRow(<%$field%>_rownum++);
- var label_cell = document.createElement('TD');
+ var label_cell = document.createElement('TH');
label_cell.id = '<% $field %>_label' + <%$field%>_fieldnum;
commit eaaf2aa8002c28fc58fd9a6946060b0883882303
Author: Christopher Burger <burgerc at freeside.biz>
Date: Wed Apr 17 10:46:02 2019 -0400
RT# 75357 - now new contact row in created in correct place
diff --git a/httemplate/elements/contact.html b/httemplate/elements/contact.html
index 48b5e2ce2..599f6629d 100644
--- a/httemplate/elements/contact.html
+++ b/httemplate/elements/contact.html
@@ -206,6 +206,6 @@ my $js = qq(
else { document.getElementById("changepw$id\_password").disabled = 'true'; }
return false;
}
-);
+) unless $opt{'for_prospect'};
</%init>
diff --git a/httemplate/elements/tr-select-part_referral.html b/httemplate/elements/tr-select-part_referral.html
index 5041f7f73..4a9cafd01 100644
--- a/httemplate/elements/tr-select-part_referral.html
+++ b/httemplate/elements/tr-select-part_referral.html
@@ -11,7 +11,9 @@
</FONT>
% } elsif ( scalar( @{$opt{'part_referrals'}} ) == 1 ) {
- <INPUT TYPE="hidden" NAME="<% $opt{'element_name'} || $opt{'field'} || 'refnum' %>" VALUE="<% $opt{'part_referrals'}->[0]->refnum %>">
+ <TR><TD COLSPAN="<% $colspan %>">
+ <INPUT TYPE="hidden" NAME="<% $opt{'element_name'} || $opt{'field'} || 'refnum' %>" VALUE="<% $opt{'part_referrals'}->[0]->refnum %>">
+ </TD></TR>
% } else {
<& /elements/tr-td-label.html, label => 'Advertising source', %opt &>
-----------------------------------------------------------------------
Summary of changes:
httemplate/edit/elements/edit.html | 2 +-
httemplate/elements/contact.html | 2 +-
httemplate/elements/tr-select-part_referral.html | 4 +++-
3 files changed, 5 insertions(+), 3 deletions(-)
More information about the freeside-commits
mailing list