]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SearchForm/tpls/SearchFormGeneric.tpl
Release 6.4.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-2011 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
45 <table width="100%" cellspacing="0" cellpadding="0" border="0">
46 <tr>
47 {{foreach name=colIteration from=$formData key=col item=colData}}
48         {counter assign=index}
49         {math equation="left % right"
50                   left=$index
51           right=$basicMaxColumns
52           assign=modVal
53     }
54         {if ($index % $basicMaxColumns == 1 && $index != 1)}
55                 </tr><tr>
56         {/if}
57         
58         <td scope="row" nowrap="nowrap" width='1%' >
59         {{if isset($colData.field.label)}}      
60                 <label for='{{$colData.field.name}}' >{sugar_translate label='{{$colData.field.label}}' module='{{$module}}'}</label>
61     {{elseif isset($fields[$colData.field.name])}}
62                 <label for='{{$fields[$colData.field.name].name}}'> {sugar_translate label='{{$fields[$colData.field.name].vname}}' module='{{$module}}'}
63         {{/if}}
64         </td>
65
66         
67         <td  nowrap="nowrap" width='1%'>
68         {{if $fields[$colData.field.name]}}
69                 {{sugar_field parentFieldArray='fields' vardef=$fields[$colData.field.name] displayType='searchView' displayParams=$colData.field.displayParams typeOverride=$colData.field.type formName=$form_name}}
70         {{/if}}
71         </td>
72 {{/foreach}}
73     {if $formData|@count >= $basicMaxColumns+1}
74     </tr>
75     <tr>
76         <td colspan="{$searchTableColumnCount}">
77     {else}
78         <td class="sumbitButtons">
79     {/if}
80         {{sugar_button module="$module" id="search" view="searchView"}}
81             <input tabindex='2' title='{$APP.LBL_CLEAR_BUTTON_TITLE}' accessKey='{$APP.LBL_CLEAR_BUTTON_KEY}' 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}'/>
82         {if $HAS_ADVANCED_SEARCH}
83             &nbsp;&nbsp;<a id="advanced_search_link" onclick="SUGAR.searchForm.searchFormSelect('{$module}|advanced_search','{$module}|basic_search')" href="javascript:void(0);">{$APP.LNK_ADVANCED_SEARCH}</a>
84             {/if}
85     </td>
86         <td class="helpIcon" width="*"><img alt="Help" border='0' src='{sugar_getimagepath file="help-dashlet.gif"}' onmouseover="return overlib(SUGAR.language.get('app_strings', 'LBL_SEARCH_HELP_TEXT'), STICKY, MOUSEOFF,1000,WIDTH, 700, LEFT,CAPTION,'<div style=\'float:left\'>'+SUGAR.language.get('app_strings', 'LBL_SEARCH_HELP_TITLE')+'</div>', CLOSETEXT, '<div style=\'float: right\'><img border=0 style=\'margin-left:2px; margin-right: 2px;\' src={sugar_getimagepath file='close.gif'}></div>',CLOSETITLE, SUGAR.language.get('app_strings', 'LBL_SEARCH_HELP_CLOSE_TOOLTIP'), CLOSECLICK,FGCLASS, 'olFgClass', CGCLASS, 'olCgClass', BGCLASS, 'olBgClass', TEXTFONTCLASS, 'olFontClass', CAPTIONFONTCLASS, 'olCapFontClass');" class="help-search"></td>
87         </tr>
88 </table>