diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-07-11 11:22:07 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-07-12 16:10:45 -0400 |
commit | ce0dabc99cf469db3abc85800b23be8dfcdd5790 (patch) | |
tree | 303b26c72d775776852f0ed09bfd33f1f64d4238 /httemplate | |
parent | f794618852978efcb4d135d8748c9b34f8b0ab5e (diff) |
RT# 76303 - fixed bug with tags not saving when selected
Conflicts:
httemplate/elements/checkboxes-table.html
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/checkboxes-table.html | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/httemplate/elements/checkboxes-table.html b/httemplate/elements/checkboxes-table.html index 671cd1f9b..3c9940163 100644 --- a/httemplate/elements/checkboxes-table.html +++ b/httemplate/elements/checkboxes-table.html @@ -96,16 +96,21 @@ % % } % -% - - <INPUT TYPE="checkbox" NAME="<% $target_pkey. $targetnum %>" <% $checked %> VALUE="ON"> -% if ( $opt{'target_link'} ) { +% ### use name sent to function else use target table and key. +% my $checkbox_name; +% if ($opt{'field'}) { $checkbox_name = $opt{'field'}; } else { $checkbox_name = "$target_pkey$targetnum"; } +% ### use values sent to function rather than values in table to determine CHECKED if values are sent. +% my $values; +% if (ref $opt{'value'} eq ref {} ) { $values = $opt{'value'}; } +% else { foreach my $value ( split(/\,/, $opt{'value'}) ) { $values->{$value} = $value; } } +% if ($values->{$targetnum}) { $checked = "CHECKED"; } +% my $color_col = $opt{'color_col'}; + <INPUT TYPE="checkbox" NAME="<% $checkbox_name %>" <% $checked %> VALUE="<% $targetnum %>"><DIV STYLE="display:inline; background-color: #<% $color_col ? $target_obj->$color_col : '' %>"> +% if ( $opt{'target_link'} ) { <A HREF="<% $opt{'target_link'} %><% $targetnum %>"> -% -% % } % <% $targetnum %>: |