]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/ProjectTask/Popup.html
Release 6.2.2
[Github/sugarcrm.git] / modules / ProjectTask / Popup.html
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
39 <!-- BEGIN: main -->
40 <!-- BEGIN: SearchHeader -->
41
42 {SET_RETURN_JS}
43
44 <script type="text/javascript">
45 function toggleDisplay(id){
46
47         if(this.document.getElementById( id).style.display=='none'){
48                 this.document.getElementById( id).style.display='inline'
49                 if(this.document.getElementById(id+"link") != undefined){
50                         this.document.getElementById(id+"link").style.display='none';
51                 }
52                                 
53         }else{
54                 this.document.getElementById(  id).style.display='none'
55                 if(this.document.getElementById(id+"link") != undefined){
56                         this.document.getElementById(id+"link").style.display='inline';
57                 }
58         }
59 }
60 </script>
61 <table cellpadding="0" cellspacing="0" border="0" width="100%" class="edit view">
62 <tr>
63 <td>
64 <div id='divsearchform' style='display:inline'>
65 <form>
66 <table width="100%" border="0" cellspacing="0" cellpadding="0">
67 <tr>
68 <td scope="row" nowrap="nowrap" width="40%">{MOD.LBL_NAME}&nbsp;&nbsp;<input type="text" name="name"  size="20" value="{NAME}" /></td>
69 <td width="10%" align="right">
70 <input type="hidden" name="module" value="{MODULE_NAME}" />
71 <input type="hidden" name="action" value="Popup"/>
72 <input type="hidden" name="query" value="true"/>
73 <input type="hidden" name="form_submit" value="{FORM_SUBMIT}" />
74 <input type="hidden" name="form" value="{FORM}" />
75 <input type="hidden" name="parent_id" value="{parent_id}" />
76 <input type="hidden" name="parent_name" value="{parent_name}" />
77 <input type="submit" name="button" class="button" id="search_form_submit"
78         title="{APP.LBL_SEARCH_BUTTON_TITLE}"
79         accesskey="{APP.LBL_SEARCH_BUTTON_KEY}"
80         value="{APP.LBL_SEARCH_BUTTON_LABEL}" />
81 </td>
82 </tr>
83 </table>
84 </form></div>
85 </td>
86 </tr>
87
88 </table>
89
90 <!-- END: SearchHeader -->
91
92 <!-- BEGIN: SearchHeaderEnd -->
93
94 <!-- END: SearchHeaderEnd -->
95
96         <table width="100%" border="0" cellspacing="0" cellpadding="0" class="list view">
97         <!-- BEGIN: list_nav_row -->
98 {PAGINATION}
99 <!-- END: list_nav_row -->
100 <tr height="20" >
101 <td scope="col" width="65%" ><a href="{ORDER_BY}name" class="listViewThLinkS1">{MOD.LBL_LIST_NAME}{arrow_start}{name_arrow}{arrow_end}</a></td>
102 <td scope="col" width="35%" ><a href="{ORDER_BY}assigned_user_name" class="listViewThLinkS1">{MOD.LBL_LIST_ASSIGNED_USER_ID}{arrow_start}{assigned_user_name_arrow}{arrow_end}</a></td>
103 </tr>
104
105 <!-- BEGIN: row -->
106 <tr height="20" class="{ROW_COLOR}S1">
107 <td scope="row"><a href="#" 
108         onclick="set_return('{project_task.ID}', '{project_task.NAME}'); window.close();">{project_task.NAME}</a></td>
109 <td valign="top">{project_task.ASSIGNED_USER_NAME}</td>
110 </tr>
111
112 <!-- END: row -->
113
114 </table>
115
116 <!-- END: main -->