Merge branch 'master' of https://github.com/jgoodman/Freeside
[freeside.git] / rt / share / html / Elements / EditCustomFieldSelect
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC
6 %#                                          <sales@bestpractical.com>
7 %#
8 %# (Except where explicitly superseded by other copyright notices)
9 %#
10 %#
11 %# LICENSE:
12 %#
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %#
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %#
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %#
29 %#
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %#
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %#
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %#
47 %# END BPS TAGGED BLOCK }}}
48 %# Build up the set of cascading select boxes as "guides"
49 %# each one limits the options of the final one a bit
50 %# (perhaps by tweaking the .display style?)
51 % my $selected = 0;
52 % my @category;
53 % my $id = $NamePrefix . $CustomField->Id;
54 % my $out = $m->scomp('SELF:options', %ARGS, SelectedRef => \$selected, CategoryRef => \@category);
55 % if (!$HideCategory and @category and not $CustomField->BasedOnObj->id) {
56   <script type="text/javascript" src="<%RT->Config->Get('WebPath')%>/NoAuth/js/cascaded.js"></script>
57 %# XXX - Hide this select from w3m?
58   <select onchange="filter_cascade(<% "$id-Values" |n,j%>, this.value)" name="<% $id %>-Category" class="CF-<%$CustomField->id%>-Edit">
59     <option value=""<% !$selected && qq[ selected="selected"] |n %>><&|/l&>-</&></option>
60 %   foreach my $cat (@category) {
61 %     my ($depth, $name) = @$cat;
62       <option value="<% $name %>"><% '&nbsp;' x $depth |n %><% $name %></option>
63 %   }
64     </select><br />
65 % } elsif ($CustomField->BasedOnObj->id) {
66 <script type="text/javascript" src="<%RT->Config->Get('WebPath')%>/NoAuth/js/cascaded.js"></script>
67 <script type="text/javascript"><!--
68 jQuery(  function () {
69     var basedon = jQuery('[name^=<% $NamePrefix .  $CustomField->BasedOnObj->id %>-Value][type!=hidden]:input:not(.hidden)');
70     basedon.each( function() {
71         var oldchange = jQuery(this).onchange;
72         jQuery(this).change( function () {
73             var vals;
74             if ( jQuery(this).is('select') ) {
75                 vals = basedon.first().val();
76             }
77             else {
78                 vals = [];
79                 jQuery(basedon).each( function() {
80                     if ( jQuery(this).is(':checked') ) {
81                         vals.push(jQuery(this).val());
82                     }
83                 });
84             }
85             filter_cascade(
86                 <% "$id-Values" |n,j%>,
87                 vals,
88                 1
89             );
90             if (oldchange != null)
91                 oldchange();
92         });
93     });
94
95     if ( basedon.is('select') ) {
96         basedon.change();
97     }
98     else {
99         basedon.first().change();
100     }
101 });
102 --></script>
103 % }
104
105 % if ( $RenderType eq 'List' ) {
106 <fieldset class="cfedit">
107 <div name="<%$id%>-Values" id="<%$id%>-Values">
108 %   if ( $checktype eq 'radio' ) {
109   <div class="none">
110   <input class="none" type="<% $checktype %>" name="<% $name %>" id="<% $name %>-none" value="" <% keys %default ? '' : ' checked="checked"' |n%> />
111   <label for="<% $name %>-none"><&|/l&>(no value)</&></label><br />
112   </div>
113 %   }
114 %   my $CFVs = $CustomField->Values;
115 %   while ( my $value = $CFVs->Next ) {
116 %     my $content = $value->Name;
117 %     my $labelid = "$name-". $value->id;
118 <div name="<% $value->Category %>">
119   <input type="<% $checktype %>" name="<% $name %>" id="<% $labelid %>" value="<% $content %>" <% $default{ lc $content }? ' checked="checked"' : '' |n%> />
120   <label for="<% $labelid %>"><% $content %></label><br />
121 </div>
122 %   }
123 </div>
124 </fieldset>
125 % } else {
126 % if (@category) {
127 %# this hidden select is to supply a full list of values,
128 %# see filter_cascade() in js/cascaded.js
129       <select name="<%$id%>-Values-Complete" id="<%$id%>-Values-Complete" class="hidden" disabled="disabled">
130         <option value=""<% !$selected && qq[ selected="selected"] |n %>><&|/l&>(no value)</&></option>
131 %       $m->out($out);
132       </select>
133 % }
134 <select
135   name="<%$id%>-Values" id="<%$id%>-Values" class="CF-<%$CustomField->id%>-Edit"
136 % if ( $Rows && ( $Multiple || !@category || $RenderType eq 'Select box') ) {
137   size="<% $Rows %>"
138 % }
139 <% $Multiple && qq[multiple="multiple"] |n %> >
140 <option value=""<% !$selected && qq[ selected="selected"] |n %>><&|/l&>(no value)</&></option>
141 % $m->out($out);
142 </select>
143 % }
144 <%init>
145 # Handle render types
146 $RenderType ||= $CustomField->RenderType;
147 if ( $RenderType eq 'Dropdown' ) {
148     # Turn it into a dropdown
149     $Rows = 0;
150 }
151
152 # The following is for rendering checkboxes / radio buttons only
153 my ($checktype, $name);
154 if ( $MaxValues == 1 ) {
155     ($checktype, $name) = ('radio', $NamePrefix . $CustomField->Id . '-Value');
156 } else {
157     ($checktype, $name) = ('checkbox', $NamePrefix . $CustomField->Id . '-Values');
158 }
159
160 @Default = grep defined && length, @Default;
161 if ( !@Default && $Values ) {
162     @Default = map $_->Content, @{ $Values->ItemsArrayRef };
163 }
164 my %default = map {lc $_ => 1} @Default;
165 </%init>
166 <%ARGS>
167 $Object => undef
168 $CustomField => undef
169 $NamePrefix => undef
170 @Default => ()
171 $Values => undef
172 $Multiple => 0
173 $Rows => undef
174 $HideCategory => 0
175 $RenderType => undef
176 $MaxValues => 1
177 </%ARGS>
178
179 <%METHOD options>
180 % @Default = grep defined && length, @Default;
181 % # $Values->HasEntry is too slow here
182 % if ( !@Default && $Values ) {
183 %     @Default = map $_->Content, @{$Values->ItemsArrayRef};
184 % }
185 % $_ = lc $_ foreach @Default;
186 % my $selected;
187 % my $CFVs = $CustomField->Values;
188 % my @levels;
189 % while ( my $value = $CFVs->Next ) {
190 %       my $name = $value->Name;
191 %       my $category = $value->Category || '';
192 %       my $level = (split /:/, $category, 2)[0] || '';
193 %       while (@levels) {
194 %           if ($levels[-1] eq $level) {
195 %               $level = '';
196 %               last;
197 %           } elsif (index($level, $levels[-1]) != 0) {
198 %               $m->out('</optgroup>');
199 %               pop @levels;
200 %           } else {
201 %               last;
202 %           }
203 %       }
204 %       if ( length $level ) {
205 %           push @$CategoryRef, [0+@levels, $level];
206             <optgroup style="padding-left: <% @levels/2 %>em" label="<% $category %>">
207 %           push @levels, $level;
208 %       }
209         <option value="<% $name %>"
210 %       if ( grep $_ eq lc $name, @Default )
211 %       {
212 %           $$SelectedRef = 1;
213             selected="selected"
214 %       }
215         ><% $name %></option>
216 % }
217 % for (@levels) {
218             </optgroup>
219 % }
220 <%ARGS>
221 $CustomField => undef
222 @Default => ()
223 $Values => undef
224 $SelectedRef => undef
225 $CategoryRef => undef
226 </%ARGS>
227 </%METHOD>