]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SearchForm/tpls/SearchFormGeneric.tpl
Release 6.5.15
[Github/sugarcrm.git] / include / SearchForm / tpls / SearchFormGeneric.tpl
1 {*
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 *}
38 {{* If templateMeta.maxColumnsBasic is not set, use maxColumns *}}
39 <input type='hidden' id="orderByInput" name='orderBy' value=''/>
40 <input type='hidden' id="sortOrder" name='sortOrder' value=''/>
41 {if !isset($templateMeta.maxColumnsBasic)}
42         {assign var="basicMaxColumns" value=$templateMeta.maxColumns}
43 {else}
44     {assign var="basicMaxColumns" value=$templateMeta.maxColumnsBasic}
45 {/if}
46 <script>
47 {literal}
48         $(function() {
49         var $dialog = $('<div></div>')
50                 .html(SUGAR.language.get('app_strings', 'LBL_SEARCH_HELP_TEXT'))
51                 .dialog({
52                         autoOpen: false,
53                         title: SUGAR.language.get('app_strings', 'LBL_HELP'),
54                         width: 700
55                 });
56                 
57                 $('#filterHelp').click(function() {
58                 $dialog.dialog('open');
59                 // prevent the default action, e.g., following a link
60         });
61         
62         });
63 {/literal}
64 </script>
65
66 <table width="100%" cellspacing="0" cellpadding="0" border="0">
67 <tr>
68 {{assign var='accesskeycount' value=0}}  {{assign var='ACCKEY' value=''}}
69 {{foreach name=colIteration from=$formData key=col item=colData}}
70     {{math assign="accesskeycount" equation="$accesskeycount + 1"}}
71     {{if $accesskeycount==1}} {{assign var='ACCKEY' value=$APP.LBL_FIRST_INPUT_SEARCH_KEY}} {{else}} {{assign var='ACCKEY' value=''}} {{/if}}
72
73         {counter assign=index}
74         {math equation="left % right"
75                   left=$index
76           right=$basicMaxColumns
77           assign=modVal
78     }
79         {if ($index % $basicMaxColumns == 1 && $index != 1)}
80                 </tr><tr>
81         {/if}
82         
83         <td scope="row" nowrap="nowrap" width='1%' >
84         {{if isset($colData.field.label)}}      
85                 <label for='{{$colData.field.name}}' >{sugar_translate label='{{$colData.field.label}}' module='{{$module}}'}</label>
86     {{elseif isset($fields[$colData.field.name])}}
87                 <label for='{{$fields[$colData.field.name].name}}'> {sugar_translate label='{{$fields[$colData.field.name].vname}}' module='{{$module}}'}
88         {{/if}}
89         </td>
90
91         
92         <td  nowrap="nowrap" width='1%'>
93         {{if $fields[$colData.field.name]}}
94                 {{sugar_field parentFieldArray='fields' vardef=$fields[$colData.field.name] accesskey=$ACCKEY displayType='searchView' displayParams=$colData.field.displayParams typeOverride=$colData.field.type formName=$form_name}}
95         {{/if}}
96         </td>
97 {{/foreach}}
98     {if $formData|@count >= $basicMaxColumns+1}
99     </tr>
100     <tr>
101         <td colspan="{$searchTableColumnCount}">
102     {else}
103         <td class="sumbitButtons">
104     {/if}
105         {{sugar_button module="$module" id="search" view="searchView"}}
106             <input tabindex='2' title='{$APP.LBL_CLEAR_BUTTON_TITLE}' onclick='SUGAR.searchForm.clear_form(this.form); return false;' class='button' type='button' name='clear' id='search_form_clear' value='{$APP.LBL_CLEAR_BUTTON_LABEL}'/>
107         {if $HAS_ADVANCED_SEARCH}
108             &nbsp;&nbsp;<a id="advanced_search_link" onclick="SUGAR.searchForm.searchFormSelect('{$module}|advanced_search','{$module}|basic_search')" href="javascript:void(0);" accesskey="{$APP.LBL_ADV_SEARCH_LNK_KEY}" >{$APP.LNK_ADVANCED_SEARCH}</a>
109             {/if}
110     </td>
111         <td class="helpIcon" width="*"><img alt="Help" border='0' id="filterHelp" src='{sugar_getimagepath file="help-dashlet.gif"}'></td>
112         </tr>
113 </table>