]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Campaigns/Popup_picker.html
Release 6.4.0
[Github/sugarcrm.git] / modules / Campaigns / Popup_picker.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  ********************************************************************************/
40 -->
41 <!-- BEGIN: main -->
42 <!-- BEGIN: SearchHeader -->
43 <script type="text/javascript" src="include/javascript/popup_helper.js?v={VERSION_MARK}"></script>
44
45
46 <table cellpadding="0" cellspacing="0" border="0" width="100%" >
47  <tr>
48   <td>
49         <table width="100%" border="0" cellspacing="0" cellpadding="0">
50          <tr>
51
52       <form action="index.php" method="post" name="popup_query_form" id="popup_query_form">
53       <tr>
54                 <td scope="row" nowrap="nowrap">{MOD.LBL_CAMPAIGN_NAME}</td>
55                 <td  nowrap="nowrap"><input type="text" size="20" name="name"  value="{NAME}" /></td>      
56                 <td scope="row" nowrap="nowrap">{MOD.LBL_CAMPAIGN_TYPE}</td>
57             <td  nowrap="nowrap"><select tabindex='1' name='campaign_type'>{TYPE_OPTIONS}</select></td>
58                 <td valign="top" align="right">         
59                 <input type="submit" name="button" class="button"
60              title="{APP.LBL_SEARCH_BUTTON_TITLE}"
61          accessKey="{APP.LBL_SEARCH_BUTTON_KEY}"
62                  value="{APP.LBL_SEARCH_BUTTON_LABEL}" />               
63         </td>
64                 <td align="right"><input type="hidden" name="action" value="Popup"/>
65                         <input type="hidden" name="query" value="true"/>
66                         <input type="hidden" name="record" value="{RECORD_VALUE}"/>
67                         <input type="hidden" name="module" value="{MODULE_NAME}" />
68                         <input type="hidden" name="form_submit" value="{FORM_SUBMIT}" />
69                         <input type="hidden" name="request_data" value="{request_data}" />                      
70                         <input type="hidden" name="form" value="{FORM}" />
71           </form>
72          </tr>
73         </table>        
74   </td>
75  </tr>
76 </table>
77
78 <script type="text/javascript">
79 <!--
80 /* initialize the popup request from the parent */
81
82 if(window.document.forms['popup_query_form'].request_data.value == "")
83 {
84         window.document.forms['popup_query_form'].request_data.value
85                 = JSON.stringify(window.opener.get_popup_request_data());
86 }
87 -->
88 </script>
89 <!-- END: SearchHeader -->
90
91 <table width="100%" border="0" cellspacing="0" cellpadding="0" class="list view">
92 <!-- BEGIN: list_nav_row -->
93 {PAGINATION}
94 <!-- END: list_nav_row -->
95
96  <tr height="20" >      
97         <td scope="col" width="5%"   nowrap>{CHECKALL}</td>
98         <td scope="col" width="35%" ><slot><a href="{ORDER_BY}name" class="listViewThLinkS1">{MOD.LBL_CAMPAIGN_NAME}{arrow_start}{name_arrow}{arrow_end}</a></slot></td>
99         <td scope="col"  width="15%"  NOWRAP>&nbsp;<slot><a href="{ORDER_BY}status" class="listViewThLinkS1">{MOD.LBL_LIST_STATUS}{arrow_start}{status_arrow}{arrow_end}</a></slot></td>
100         <td scope="col"  width="15%"  NOWRAP>&nbsp;<slot><a href="{ORDER_BY}campaign_type" class="listViewThLinkS1">{MOD.LBL_LIST_TYPE}{arrow_start}{campaign_type_arrow}{arrow_end}</a></slot></td>
101  </tr>
102
103 <!-- BEGIN: row -->
104  <tr height="20"  class="{ROW_COLOR}S1">
105         <td valign="top">{PREROW}</td>
106         <td scope='row' valign=TOP><slot><{TAG_TYPE} href="#"  onclick="send_back('Campaigns','{CAMPAIGN.ID}');">{CAMPAIGN.NAME}</{TAG_TYPE}></slot></td>       
107     <td valign=TOP><slot>{CAMPAIGN.STATUS}</slot></td>
108     <td valign=TOP><slot>{CAMPAIGN.CAMPAIGN_TYPE}</slot></td>
109
110  </tr>
111  <tr>
112     <td colspan="20" class="listViewHRS1"></td>
113  </tr>
114 <!-- END: row -->
115 </table>
116 {ASSOCIATED_JAVASCRIPT_DATA}
117 <!-- END: main -->