]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarFields/Fields/Datetimecombo/SearchView.tpl
Release 6.4.0
[Github/sugarcrm.git] / include / SugarFields / Fields / Datetimecombo / SearchView.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 <table border="0" cellpadding="0" cellspacing="0">
39 <tr valign="middle">
40 <td nowrap>
41 <input autocomplete="off" type="text" id="{{sugarvar key='name'}}_date" value="{$fields[{{sugarvar key='name' stringFormat=true}}].value}" size="11" maxlength="10" title='{{$vardef.help}}' {{if !empty($tabindex)}} tabindex='{{$tabindex}}' {{/if}}  onblur="combo_{{sugarvar key='name'}}.update(); {{if isset($displayParams.updateCallback)}}{{$displayParams.updateCallback}}{{/if}}">
42 {capture assign="other_attributes"}align="absmiddle" border="0" id="{{sugarvar key='name'}}_trigger"{/capture}
43 {sugar_getimage name="jscalendar" ext=".gif" alt="$APP.LBL_ENTER_DATE other_attributes=$other_attributes"}&nbsp;
44 {{if empty($displayParams.splitDateTime)}}
45 </td>
46 <td nowrap>
47 {{else}}
48 <br>
49 {{/if}}
50 <div id="{{sugarvar key='name'}}_time_section"></div>
51 {{if $displayParams.showNoneCheckbox}}
52 <script type="text/javascript">
53 function set_{{sugarvar key='name'}}_values(form) {ldelim}
54  if(form.{{sugarvar key='name'}}_flag.checked)  {ldelim}
55         form.{{sugarvar key='name'}}_flag.value=1;
56         form.{{sugarvar key='name'}}.value="";
57         form.{{sugarvar key='name'}}.readOnly=true;
58  {rdelim} else  {ldelim}
59         form.{{sugarvar key='name'}}_flag.value=0;
60         form.{{sugarvar key='name'}}.readOnly=false;
61  {rdelim}
62 {rdelim}
63 </script>
64 {{/if}}
65 </td>
66 </tr>
67 {{if $displayParams.showFormats}}
68 <tr valign="middle">
69 <td nowrap>
70 <span class="dateFormat">{$USER_DATEFORMAT}</span>
71 </td>
72 <td nowrap>
73 <span class="dateFormat">{$TIME_FORMAT}</span>
74 </td>
75 </tr>
76 {{/if}}
77 </table>
78 <input type="hidden" id="{{sugarvar key='name'}}" name="{{sugarvar key='name'}}" value="{$fields[{{sugarvar key='name' stringFormat=true}}].value}">
79 <script type="text/javascript" src="{sugar_getjspath file='include/SugarFields/Fields/Datetimecombo/Datetimecombo.js'}"></script>
80 <script type="text/javascript">
81 var combo_{{sugarvar key='name'}} = new Datetimecombo("{$fields[{{sugarvar key='name' stringFormat=true}}].value}", "{{sugarvar key='name'}}", "{$TIME_FORMAT}", "{{$tabindex}}", '{{$displayParams.showNoneCheckbox}}', '{$fields[{{sugarvar key='name' stringFormat=true}}_flag].value}', true);
82 //Render the remaining widget fields
83 text = combo_{{sugarvar key='name'}}.html('{{$displayParams.updateCallback}}');
84 document.getElementById('{{sugarvar key='name'}}_time_section').innerHTML = text;
85
86 //Call eval on the update function to handle updates to calendar picker object
87 eval(combo_{{sugarvar key='name'}}.jsscript('{{$displayParams.updateCallback}}'));
88 </script>
89
90 <script type="text/javascript">
91 function update_{{sugarvar key='name'}}_available() {ldelim}
92       YAHOO.util.Event.onAvailable("{{sugarvar key='name'}}_date", this.handleOnAvailable, this);
93 {rdelim}
94
95 update_{{sugarvar key='name'}}_available.prototype.handleOnAvailable = function(me) {ldelim}
96         Calendar.setup ({ldelim}
97         onClose : update_{{sugarvar key='name'}},
98         inputField : "{{sugarvar key='name'}}_date",
99         ifFormat : "{$CALENDAR_FORMAT}",
100         daFormat : "{$CALENDAR_FORMAT}",
101         button : "{{sugarvar key='name'}}_trigger",
102         singleClick : true,
103         step : 1,
104         startWeekday: {$CALENDAR_FDOW|default:'0'},
105         weekNumbers:false
106         {rdelim});
107
108         //Call update for first time to round hours and minute values
109         combo_{{sugarvar key='name'}}.update(false);
110 {rdelim}
111
112 var obj_{{sugarvar key='name'}} = new update_{{sugarvar key='name'}}_available();
113 </script>