diff options
Diffstat (limited to 'rt/share/html/Elements/EditCustomFieldSelect')
-rw-r--r-- | rt/share/html/Elements/EditCustomFieldSelect | 47 |
1 files changed, 44 insertions, 3 deletions
diff --git a/rt/share/html/Elements/EditCustomFieldSelect b/rt/share/html/Elements/EditCustomFieldSelect index bf2a8289d..b3fefbd49 100644 --- a/rt/share/html/Elements/EditCustomFieldSelect +++ b/rt/share/html/Elements/EditCustomFieldSelect @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC %# <sales@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -65,7 +65,7 @@ % } elsif ($CustomField->BasedOnObj->id) { <script type="text/javascript" src="<%RT->Config->Get('WebPath')%>/NoAuth/js/cascaded.js"></script> <script type="text/javascript"><!-- -doOnLoad( function () { +jQuery( function () { var basedon = document.getElementById('<% $NamePrefix . $CustomField->BasedOnObj->id %>-Values'); if (basedon != null) { var oldchange = basedon.onchange; @@ -91,6 +91,22 @@ doOnLoad( function () { % $m->out($out); </select> % } + +% if ( $RenderType eq 'List' ) { +<fieldset class="cfedit"> +% if ( $checktype eq 'radio' ) { + <input type="<% $checktype %>" name="<% $name %>" id="<% $name %>-none" value="" <% keys %default ? '' : ' checked="checked"' |n%> /> + <label for="<% $name %>-none"><&|/l&>(no value)</&></label><br /> +% } +% my $CFVs = $CustomField->Values; +% while ( my $value = $CFVs->Next ) { +% my $content = $value->Name; +% my $labelid = "$name-". $value->id; + <input type="<% $checktype %>" name="<% $name %>" id="<% $labelid %>" value="<% $content %>" <% $default{ lc $content }? ' checked="checked"' : '' |n%> /> + <label for="<% $labelid %>"><% $content %></label><br /> +% } +</fieldset> +% } else { <select name="<%$id%>-Values" id="<%$id%>-Values" class="CF-<%$CustomField->id%>-Edit" % if ( $Rows && ( $Multiple || !@category ) ) { @@ -100,15 +116,40 @@ doOnLoad( function () { <option value=""<% !$selected && qq[ selected="selected"] |n %>><&|/l&>(no value)</&></option> % $m->out($out); </select> +% } +<%init> +# Handle render types +$RenderType ||= $CustomField->RenderType; +if ( $RenderType eq 'Dropdown' ) { + # Turn it into a dropdown + $Rows = 0; +} + +# The following is for rendering checkboxes / radio buttons only +my ($checktype, $name); +if ( $MaxValues == 1 ) { + ($checktype, $name) = ('radio', $NamePrefix . $CustomField->Id . '-Value'); +} else { + ($checktype, $name) = ('checkbox', $NamePrefix . $CustomField->Id . '-Values'); +} + +@Default = grep defined && length, @Default; +if ( !@Default && $Values ) { + @Default = map $_->Content, @{ $Values->ItemsArrayRef }; +} +my %default = map {lc $_ => 1} @Default; +</%init> <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef -$Default => undef +@Default => () $Values => undef $Multiple => 0 $Rows => undef $HideCategory => 0 +$RenderType => undef +$MaxValues => 1 </%ARGS> <%METHOD options> |