]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarFields/Fields/Datetimecombo/EditView.tpl
Release 6.4.0
[Github/sugarcrm.git] / include / SugarFields / Fields / Datetimecombo / EditView.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 {{capture name=idname assign=idname}}{{sugarvar key='name'}}{{/capture}}
39 {{if !empty($displayParams.idName)}}
40     {{assign var=idname value=$displayParams.idName}}
41 {{/if}}
42
43 {{assign var=flag_field value=$vardef.name|cat:_flag}}
44 <table border="0" cellpadding="0" cellspacing="0" class="dateTime">
45 <tr valign="middle">
46 <td nowrap>
47 <input autocomplete="off" type="text" id="{{$idname}}_date" value="{$fields[{{sugarvar key='name' stringFormat=true}}].value}" size="11" maxlength="10" title='{{$vardef.help}}' tabindex="{{$tabindex}}" onblur="combo_{{$idname}}.update(); {{if isset($displayParams.updateCallback)}}{{$displayParams.updateCallback}}{{/if}}" onchange="combo_{{$idname}}.update(); {{if isset($displayParams.updateCallback)}}{{$displayParams.updateCallback}}{{/if}}">
48 {capture assign="other_attributes"}align="absmiddle" border="0" id="{{$idname}}_trigger"{/capture}
49 {sugar_getimage name="jscalendar" ext=".gif" alt="$APP.LBL_ENTER_DATE" other_attributes="$other_attributes"}&nbsp;
50 {{if empty($displayParams.splitDateTime)}}
51 </td>
52 <td nowrap>
53 {{else}}
54 <br>
55 {{/if}}
56 <div id="{{$idname}}_time_section"></div>
57 {{if $displayParams.showNoneCheckbox}}
58 <script type="text/javascript">
59 function set_{{$idname}}_values(form) {ldelim}
60  if(form.{{$idname}}_flag.checked)  {ldelim}
61         form.{{$idname}}_flag.value=1;
62         form.{{$idname}}.value="";
63         form.{{$idname}}.readOnly=true;
64  {rdelim} else  {ldelim}
65         form.{{$idname}}_flag.value=0;
66         form.{{$idname}}.readOnly=false;
67  {rdelim}
68 {rdelim}
69 </script>
70 {{/if}}
71 </td>
72 </tr>
73 {{if $displayParams.showFormats}}
74 <tr valign="middle">
75 <td nowrap>
76 <span class="dateFormat">{$USER_DATEFORMAT}</span>
77 </td>
78 <td nowrap>
79 <span class="dateFormat">{$TIME_FORMAT}</span>
80 </td>
81 </tr>
82 {{/if}}
83 </table>
84 <input type="hidden" class="DateTimeCombo" id="{{$idname}}" name="{{$idname}}" value="{$fields[{{sugarvar key='name' stringFormat=true}}].value}">
85 <script type="text/javascript" src="{sugar_getjspath file="include/SugarFields/Fields/Datetimecombo/Datetimecombo.js"}"></script>
86 <script type="text/javascript">
87 var combo_{{$idname}} = new Datetimecombo("{$fields[{{sugarvar key='name' stringFormat=true}}].value}", "{{$idname}}", "{$TIME_FORMAT}", "{{$tabindex}}", '{{$displayParams.showNoneCheckbox}}', false, true);
88 //Render the remaining widget fields
89 text = combo_{{$idname}}.html('{{$displayParams.updateCallback}}');
90 document.getElementById('{{$idname}}_time_section').innerHTML = text;
91
92 //Call eval on the update function to handle updates to calendar picker object
93 eval(combo_{{$idname}}.jsscript('{{$displayParams.updateCallback}}'));
94
95 //bug 47718: this causes too many addToValidates to be called, resulting in the error messages being displayed multiple times
96 //    removing it here to mirror the Datetime SugarField, where the validation is not added at this level
97 //addToValidate('{$form_name}',"{{$idname}}_date",'date',false,"{{$idname}}");
98 addToValidateBinaryDependency('{$form_name}',"{{$idname}}_hours", 'alpha', false, "{$APP.ERR_MISSING_REQUIRED_FIELDS} {$APP.LBL_HOURS}" ,"{{$idname}}_date");
99 addToValidateBinaryDependency('{$form_name}', "{{$idname}}_minutes", 'alpha', false, "{$APP.ERR_MISSING_REQUIRED_FIELDS} {$APP.LBL_MINUTES}" ,"{{$idname}}_date");
100 addToValidateBinaryDependency('{$form_name}', "{{$idname}}_meridiem", 'alpha', false, "{$APP.ERR_MISSING_REQUIRED_FIELDS} {$APP.LBL_MERIDIEM}","{{$idname}}_date");
101
102 YAHOO.util.Event.onDOMReady(function()
103 {ldelim}
104
105         Calendar.setup ({ldelim}
106         onClose : update_{{$idname}},
107         inputField : "{{$idname}}_date",
108         ifFormat : "{$CALENDAR_FORMAT}",
109         daFormat : "{$CALENDAR_FORMAT}",
110         button : "{{$idname}}_trigger",
111         singleClick : true,
112         step : 1,
113         weekNumbers: false,
114         startWeekday: {$CALENDAR_FDOW|default:'0'},
115         comboObject: combo_{{$idname}}
116         {rdelim});
117
118         //Call update for first time to round hours and minute values
119         combo_{{$idname}}.update(false);
120
121 {rdelim}); 
122 </script>