]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarFields/Fields/Datetimecombo/EditView.tpl
Release 6.2.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 <img border="0" src="{sugar_getimagepath file='jscalendar.gif'}" alt="{$APP.LBL_ENTER_DATE}" id="{{$idname}}_trigger" name="{{$idname}}_trigger" align="absmiddle">&nbsp;
49 {{if empty($displayParams.splitDateTime)}}
50 </td>
51 <td nowrap>
52 {{else}}
53 <br>
54 {{/if}}
55 <div id="{{$idname}}_time_section"></div>
56 {{if $displayParams.showNoneCheckbox}}
57 <script type="text/javascript">
58 function set_{{$idname}}_values(form) {ldelim}
59  if(form.{{$idname}}_flag.checked)  {ldelim} 
60         form.{{$idname}}_flag.value=1;
61         form.{{$idname}}.value="";
62         form.{{$idname}}.readOnly=true;
63  {rdelim} else  {ldelim} 
64         form.{{$idname}}_flag.value=0;
65         form.{{$idname}}.readOnly=false;
66  {rdelim} 
67 {rdelim}
68 </script>
69 {{/if}}
70 </td>
71 </tr>
72 {{if $displayParams.showFormats}}
73 <tr valign="middle">
74 <td nowrap>
75 <span class="dateFormat">{$USER_DATEFORMAT}</span>
76 </td>
77 <td nowrap>
78 <span class="dateFormat">{$TIME_FORMAT}</span>
79 </td>
80 </tr>
81 {{/if}}
82 </table>
83 <input type="hidden" class="DateTimeCombo" id="{{$idname}}" name="{{$idname}}" value="{$fields[{{sugarvar key='name' stringFormat=true}}].value}">
84 <script type="text/javascript" src="include/SugarFields/Fields/Datetimecombo/Datetimecombo.js"></script>
85 <script type="text/javascript">
86 var combo_{{$idname}} = new Datetimecombo("{$fields[{{sugarvar key='name' stringFormat=true}}].value}", "{{$idname}}", "{$TIME_FORMAT}", "{{$tabindex}}", '{{$displayParams.showNoneCheckbox}}', false, true);
87 //Render the remaining widget fields
88 text = combo_{{$idname}}.html('{{$displayParams.updateCallback}}');
89 document.getElementById('{{$idname}}_time_section').innerHTML = text;
90
91 //Call eval on the update function to handle updates to calendar picker object
92 eval(combo_{{$idname}}.jsscript('{{$displayParams.updateCallback}}'));
93
94 addToValidate('{$form_name}',"{{$idname}}_date",'date',false,"{{$idname}}");
95 addToValidateBinaryDependency('{$form_name}',"{{$idname}}_hours", 'alpha', false, "{$APP.ERR_MISSING_REQUIRED_FIELDS} {$APP.LBL_HOURS}" ,"{{$idname}}_date");
96 addToValidateBinaryDependency('{$form_name}', "{{$idname}}_minutes", 'alpha', false, "{$APP.ERR_MISSING_REQUIRED_FIELDS} {$APP.LBL_MINUTES}" ,"{{$idname}}_date");
97 addToValidateBinaryDependency('{$form_name}', "{{$idname}}_meridiem", 'alpha', false, "{$APP.ERR_MISSING_REQUIRED_FIELDS} {$APP.LBL_MERIDIEM}","{{$idname}}_date");
98
99 YAHOO.util.Event.onDOMReady(function()
100 {ldelim}
101
102         Calendar.setup ({ldelim}
103         onClose : update_{{$idname}},
104         inputField : "{{$idname}}_date",
105         ifFormat : "{$CALENDAR_FORMAT}",
106         daFormat : "{$CALENDAR_FORMAT}",
107         button : "{{$idname}}_trigger",
108         singleClick : true,
109         step : 1,
110         weekNumbers: false,
111         comboObject: combo_{{$idname}}
112         {rdelim});
113         
114         //Call update for first time to round hours and minute values
115         combo_{{$idname}}.update(false);
116
117 {rdelim}); 
118 </script>