]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SearchForm/tpls/SearchFormGeneric.tpl
Release 6.5.0
[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-2012 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 {if !isset($templateMeta.maxColumnsBasic)}
40         {assign var="basicMaxColumns" value=$templateMeta.maxColumns}
41 {else}
42     {assign var="basicMaxColumns" value=$templateMeta.maxColumnsBasic}
43 {/if}
44 <script>
45 {literal}
46         $(function() {
47         var $dialog = $('<div></div>')
48                 .html(SUGAR.language.get('app_strings', 'LBL_SEARCH_HELP_TEXT'))
49                 .dialog({
50                         autoOpen: false,
51                         title: SUGAR.language.get('app_strings', 'LBL_HELP'),
52                         width: 700
53                 });
54                 
55                 $('#filterHelp').click(function() {
56                 $dialog.dialog('open');
57                 // prevent the default action, e.g., following a link
58         });
59         
60         });
61 {/literal}
62 </script>
63
64 <table width="100%" cellspacing="0" cellpadding="0" border="0">
65 <tr>
66 {{assign var='accesskeycount' value=0}}  {{assign var='ACCKEY' value=''}}
67 {{foreach name=colIteration from=$formData key=col item=colData}}
68     {{math assign="accesskeycount" equation="$accesskeycount + 1"}}
69     {{if $accesskeycount==1}} {{assign var='ACCKEY' value=$APP.LBL_FIRST_INPUT_SEARCH_KEY}} {{else}} {{assign var='ACCKEY' value=''}} {{/if}}
70
71         {counter assign=index}
72         {math equation="left % right"
73                   left=$index
74           right=$basicMaxColumns
75           assign=modVal
76     }
77         {if ($index % $basicMaxColumns == 1 && $index != 1)}
78                 </tr><tr>
79         {/if}
80         
81         <td scope="row" nowrap="nowrap" width='1%' >
82         {{if isset($colData.field.label)}}      
83                 <label for='{{$colData.field.name}}' >{sugar_translate label='{{$colData.field.label}}' module='{{$module}}'}</label>
84     {{elseif isset($fields[$colData.field.name])}}
85                 <label for='{{$fields[$colData.field.name].name}}'> {sugar_translate label='{{$fields[$colData.field.name].vname}}' module='{{$module}}'}
86         {{/if}}
87         </td>
88
89         
90         <td  nowrap="nowrap" width='1%'>
91         {{if $fields[$colData.field.name]}}
92                 {{sugar_field parentFieldArray='fields' vardef=$fields[$colData.field.name] accesskey=$ACCKEY displayType='searchView' displayParams=$colData.field.displayParams typeOverride=$colData.field.type formName=$form_name}}
93         {{/if}}
94         </td>
95 {{/foreach}}
96     {if $formData|@count >= $basicMaxColumns+1}
97     </tr>
98     <tr>
99         <td colspan="{$searchTableColumnCount}">
100     {else}
101         <td class="sumbitButtons">
102     {/if}
103         {{sugar_button module="$module" id="search" view="searchView"}}
104             <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}'/>
105         {if $HAS_ADVANCED_SEARCH}
106             &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>
107             {/if}
108     </td>
109         <td class="helpIcon" width="*"><img alt="Help" border='0' id="filterHelp" src='{sugar_getimagepath file="help-dashlet.gif"}'></td>
110         </tr>
111 </table>