]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/ListView/ListViewDCMenu.tpl
Release 6.2.0beta4
[Github/sugarcrm.git] / include / ListView / ListViewDCMenu.tpl
1     {*
2
3 /*********************************************************************************
4  * SugarCRM is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40
41 *}
42 <script type="text/javascript">
43 {literal}
44 function submitListViewDCMenu(submitElem) {
45 var callback = {
46 success: function(o) {
47 var contentElem = document.getElementById('dcSearch');
48 while ( typeof(contentElem) != 'undefined' && contentElem.className != 'dccontent' ) {
49 contentElem = contentElem.parentNode;
50 }
51 contentElem.innerHTML = o.responseText;
52 },
53 failure: function(o) {
54 // AJAX failed, we have probably timed out of our session, force a reload
55 window.history.go(0);
56 }
57 };
58
59 YAHOO.util.Connect.asyncRequest('POST', 'index.php', callback, "module=Meetings&action=listbytype&button=Search&name_basic="+document.getElementById('dcSearch').value);
60
61 }
62 {/literal}
63 </script>
64 <form id="dcSearchForm">
65 <table class='dcSearch' cellpadding='0' cellspacing='0'>
66                         <tr>
67                         <td>
68                         <input type='text' id='dcSearch' name='dcSearch' value="{$DCSEARCH}">
69                         </td>
70                         <td>
71                         <input type='submit' name='submit' class='dcSubmit' value='Search Meetings' onclick="submitListViewDCMenu(this); return false;">
72                         </td>
73                         </tr>
74                 </table>
75 </form>         
76                 <table width='500' class='dcListView' cellpadding='0' cellspacing='0'>
77 <tr height='20'>
78                 {if $prerow}
79                         <th scope='col' nowrap="nowrap" width='1%' class="selectCol">
80                                 <div>
81                                 <input type='checkbox' class='checkbox' name='massall' id='massall' value='' onclick='sListView.check_all(document.MassUpdate, "mass[]", this.checked);' />
82                                 {$selectLink}
83                                 </div>
84                         </th>
85                 {/if}
86                 {if $favorites}
87                 <th scope='col'>
88                                 &nbsp;
89                 </th>
90                 {/if}
91                 {if !empty($quickViewLinks)}
92                 <th scope='col' width='1%' style="padding: 0px;">&nbsp;</th>
93                 {/if}
94                 {counter start=0 name="colCounter" print=false assign="colCounter"}
95                 {foreach from=$displayColumns key=colHeader item=params}
96                         <th scope='col' width='{$params.width}%' nowrap="nowrap">
97                                 <div style='white-space: nowrap;'width='100%' align='{$params.align|default:'left'}'>
98                 {if false}
99                     {if $params.url_sort}
100                         <a href='{$pageData.urls.orderBy}{$params.orderBy|default:$colHeader|lower}' class='listViewThLinkS1'>
101                     {else}
102                         {if $params.orderBy|default:$colHeader|lower == $pageData.ordering.orderBy}
103                             <a href='javascript:sListView.order_checks("{$pageData.ordering.sortOrder|default:ASCerror}", "{$params.orderBy|default:$colHeader|lower}" , "{$pageData.bean.moduleDir}{"2_"}{$pageData.bean.objectName|upper}{"_ORDER_BY"}")' class='listViewThLinkS1'>
104                         {else}
105                             <a href='javascript:sListView.order_checks("ASC", "{$params.orderBy|default:$colHeader|lower}" , "{$pageData.bean.moduleDir}{"2_"}{$pageData.bean.objectName|upper}{"_ORDER_BY"}")' class='listViewThLinkS1'>
106                         {/if}
107                     {/if}
108                     {sugar_translate label=$params.label module=$pageData.bean.moduleDir}
109                                         </a>&nbsp;&nbsp;
110                                         {if $params.orderBy|default:$colHeader|lower == $pageData.ordering.orderBy}
111                                                 {if $pageData.ordering.sortOrder == 'ASC'}
112                                                         {capture assign="imageName"}arrow_down.{$arrowExt}{/capture}
113                                                         <img border='0' src='{sugar_getimagepath file=$imageName}' width='{$arrowWidth}' height='{$arrowHeight}' align='absmiddle' alt='{$arrowAlt}'>
114                                                 {else}
115                                                         {capture assign="imageName"}arrow_up.{$arrowExt}{/capture}
116                                                         <img border='0' src='{sugar_getimagepath file=$imageName}' width='{$arrowWidth}' height='{$arrowHeight}' align='absmiddle' alt='{$arrowAlt}'>
117                                                 {/if}
118                                         {else}
119                                                 {capture assign="imageName"}arrow.{$arrowExt}{/capture}
120                                                 <img border='0' src='{sugar_getimagepath file=$imageName}' width='{$arrowWidth}' height='{$arrowHeight}' align='absmiddle' alt='{$arrowAlt}'>
121                                         {/if}
122                                 {else}
123                     {if !isset($params.noHeader) || $params.noHeader == false} 
124                                           {sugar_translate label=$params.label module=$pageData.bean.moduleDir}
125                     {/if}
126                                 {/if}
127                                 </div>
128                         </th>
129                         {counter name="colCounter"}
130                 {/foreach}
131         </tr>
132         
133         
134         {counter start=$pageData.offsets.current print=false assign="offset" name="offset"}     
135         {foreach name=rowIteration from=$data key=id item=rowData}
136             {counter name="offset" print=false}
137
138                 {if $smarty.foreach.rowIteration.iteration is odd}
139                         {assign var='_rowColor' value=$rowColor[0]}
140                 {else}
141                         {assign var='_rowColor' value=$rowColor[1]}
142                 {/if}
143                 <tr height='20' class='{$_rowColor}S1'>
144                         {if $prerow}
145                         <td width='1%' class='nowrap'>
146                          {if !$is_admin && is_admin_for_user && $rowData.IS_ADMIN==1}
147                                         <input type='checkbox' disabled="disabled" class='checkbox' value='{$rowData.ID}'>
148                          {else}
149                     <input onclick='sListView.check_item(this, document.MassUpdate)' type='checkbox' class='checkbox' name='mass[]' value='{$rowData.ID}'>               
150                          {/if}
151                         </td>
152                         {/if}
153                         {if $favorites}
154                                 <td>{$rowData.star}</td>
155                         {/if}
156                         {if !empty($quickViewLinks)}
157                         <td width='2%' nowrap>{if $pageData.access.edit}<a title='{$editLinkString}' href="index.php?action=EditView&module={if $params.dynamic_module}{$rowData[$params.dynamic_module]}{else}{$pageData.bean.moduleDir}{/if}&record={$rowData[$params.parent_id]|default:$rowData.ID}&offset={$pageData.offsets.current+$smarty.foreach.rowIteration.iteration}&stamp={$pageData.stamp}&return_module=Home&return_action=index"><img border=0 src='{sugar_getimagepath file='edit_inline.gif'}'></a>{/if}</td>
158                         {/if}
159                         {counter start=0 name="colCounter" print=false assign="colCounter"}
160                         {foreach from=$displayColumns key=col item=params}
161                             {strip}
162                                 <td scope='row' align='{$params.align|default:'left'}' valign="top" {if ($params.type == 'teamset')}class="nowrap"{/if}>
163                                         {if $col == 'NAME' || $params.bold}<b>{/if}
164                                     {if $params.link && !$params.customCode}
165                                                 <{$pageData.tag.$id[$params.ACLTag]|default:$pageData.tag.$id.MAIN} href='index.php?action={$params.action|default:'DetailView'}&module={if $params.dynamic_module}{$rowData[$params.dynamic_module]}{else}{$params.module|default:$pageData.bean.moduleDir}{/if}&record={$rowData[$params.id]|default:$rowData.ID}&offset={$pageData.offsets.current+$smarty.foreach.rowIteration.iteration}&stamp={$pageData.stamp}'>
166                                         {/if}
167                                         {if $params.customCode}
168                                                 {sugar_evalcolumn_old var=$params.customCode rowData=$rowData}
169                                         {else}
170                        {sugar_field parentFieldArray=$rowData vardef=$params displayType=ListView field=$col}
171                                         {/if}
172                                         {if empty($rowData.$col) && empty($params.customCode)}&nbsp;{/if}
173                                         {if $params.link && !$params.customCode}
174                                                 </{$pageData.tag.$id[$params.ACLTag]|default:$pageData.tag.$id.MAIN}>
175                     {/if}
176                     {if $col == 'NAME' || $params.bold}</b>{/if}
177                                 </td>
178                                 {/strip}
179                                 {counter name="colCounter"}
180                         {/foreach}
181                 </tr>
182         {foreachelse}
183         <tr height='20' class='{$rowColor[0]}S1'>
184             <td colspan="{$colCount}">
185                 <em>{$APP.LBL_NO_DATA}</em>
186             </td>
187         </tr> 
188         {/foreach}
189                 </table>