]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/include/javascript/popup_parent_helper.js
Release 6.1.4
[Github/sugarcrm.git] / jssource / src_files / include / javascript / popup_parent_helper.js
1 /*********************************************************************************
2  * SugarCRM is a customer relationship management program developed by
3  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Affero General Public License version 3 as published by the
7  * Free Software Foundation with the addition of the following permission added
8  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
9  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
10  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
11  * 
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
15  * details.
16  * 
17  * You should have received a copy of the GNU Affero General Public License along with
18  * this program; if not, see http://www.gnu.org/licenses or write to the Free
19  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20  * 02110-1301 USA.
21  * 
22  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
23  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
24  * 
25  * The interactive user interfaces in modified source and object code versions
26  * of this program must display Appropriate Legal Notices, as required under
27  * Section 5 of the GNU Affero General Public License version 3.
28  * 
29  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
30  * these Appropriate Legal Notices must retain the display of the "Powered by
31  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
32  * technical reasons, the Appropriate Legal Notices must display the words
33  * "Powered by SugarCRM".
34  ********************************************************************************/
35
36
37
38
39 var popup_request_data;
40 var close_popup;
41
42 function get_popup_request_data()
43 {
44         return window.document.popup_request_data;
45 }
46
47 function get_close_popup()
48 {
49         return window.document.close_popup;
50 }
51
52 function open_popup(module_name, width, height, initial_filter, close_popup, hide_clear_button, popup_request_data, popup_mode, create, metadata)
53 {
54         if (typeof(popupCount) == "undefined" || popupCount == 0)
55            popupCount = 1;
56         // set the variables that the popup will pull from
57         window.document.popup_request_data = popup_request_data;
58         window.document.close_popup = close_popup;
59
60         // launch the popup
61         URL = 'index.php?'
62                 + 'module=' + module_name
63                 + '&action=Popup';
64         
65         if(initial_filter != '')
66         {
67                 URL += '&query=true' + initial_filter;
68         }
69         
70         if(hide_clear_button)
71         {
72                 URL += '&hide_clear_button=true';
73         }
74         
75         windowName = module_name + '_popup_window' + popupCount;
76         popupCount++;
77         
78         windowFeatures = 'width=' + width
79                 + ',height=' + height
80                 + ',resizable=1,scrollbars=1';
81
82         if (popup_mode == '' && popup_mode == 'undefined') {
83                 popup_mode='single';            
84         }
85         URL+='&mode='+popup_mode;
86         if (create == '' && create == 'undefined') {
87                 create = 'false';
88         }
89         URL+='&create='+create;
90
91         if (metadata != '' && metadata != 'undefined') {
92                 URL+='&metadata='+metadata;     
93         }
94         
95         win = window.open(URL, windowName, windowFeatures);
96
97         if(window.focus)
98         {
99                 // put the focus on the popup if the browser supports the focus() method
100                 win.focus();
101         }
102         
103         win.popupCount = popupCount;
104
105         return win;
106 }
107
108 /**
109  * The reply data must be a JSON array structured with the following information:
110  *  1) form name to populate
111  *  2) associative array of input names to values for populating the form
112  */
113 var from_popup_return  = false;
114 function set_return(popup_reply_data)
115 {
116         from_popup_return = true;
117         var form_name = popup_reply_data.form_name;
118         var name_to_value_array = popup_reply_data.name_to_value_array;
119         
120         for (var the_key in name_to_value_array)
121         {
122                 if(the_key == 'toJSON')
123                 {
124                         /* just ignore */
125                 }
126                 else
127                 {
128                         var displayValue=name_to_value_array[the_key].replace(/&amp;/gi,'&').replace(/&lt;/gi,'<').replace(/&gt;/gi,'>').replace(/&#039;/gi,'\'').replace(/&quot;/gi,'"');;
129                         if(window.document.forms[form_name] && window.document.forms[form_name].elements[the_key])
130                                 window.document.forms[form_name].elements[the_key].value = displayValue;
131                 }
132         }
133 }
134
135 function set_return_and_save(popup_reply_data)
136 {
137         var form_name = popup_reply_data.form_name;
138         var name_to_value_array = popup_reply_data.name_to_value_array;
139         
140         for (var the_key in name_to_value_array)
141         {
142                 if(the_key == 'toJSON')
143                 {
144                         /* just ignore */
145                 }
146                 else
147                 {
148                         window.document.forms[form_name].elements[the_key].value = name_to_value_array[the_key];
149                 }
150         }
151         
152         window.document.forms[form_name].return_module.value = window.document.forms[form_name].module.value;
153         window.document.forms[form_name].return_action.value = 'DetailView';
154         window.document.forms[form_name].return_id.value = window.document.forms[form_name].record.value;
155         window.document.forms[form_name].action.value = 'Save';
156         window.document.forms[form_name].submit();
157 }
158
159 function set_return_and_save_targetlist(popup_reply_data)
160 {
161         var form_name = popup_reply_data.form_name;
162         var name_to_value_array = popup_reply_data.name_to_value_array;
163         var form_index = document.forms.length - 1;
164         sugarListView.get_checks();
165         var uids = document.MassUpdate.uid.value;
166         if (uids == '') {
167                 return false;
168         }
169         /*
170          * Add the value returned from the popup to the form for submittal
171          */
172         for (var the_key in name_to_value_array)
173         {
174                 if(the_key == 'toJSON')
175                 {
176                         /* just ignore */
177                 }
178                 else
179                 {
180                         for ( i = form_index; i >= 0; i--)
181                         {
182                                 if ( form_name == window.document.forms[form_index] )
183                                 {
184                                         form_index = i;
185                                         break;
186                                 }
187                         }
188                         window.document.forms[form_index].elements[get_element_index(form_index,the_key)].value = name_to_value_array[the_key];
189                 }
190         }
191         window.document.forms[form_index].elements[get_element_index(form_index,"return_module")].value = window.document.forms[form_index].elements[get_element_index(form_index,"module")].value;
192         window.document.forms[form_index].elements[get_element_index(form_index,"return_action")].value = 'ListView';
193         window.document.forms[form_index].elements[get_element_index(form_index,"uids")].value = uids;
194         window.document.forms[form_index].submit();
195 }
196
197
198 function get_element_index(form_index,element_name) {
199         var j = 0;
200         while (j < window.document.forms[form_index].elements.length) {
201                 if(window.document.forms[form_index].elements[j].name == element_name) {
202                         index = j;
203                         break;
204                 }
205                 j++;
206         }
207         return index;
208 }
209
210
211 /**
212  * This is a helper function to construct the initial filter that can be
213  * passed into the open_popup() function.  It assumes that there is an
214  * account_id and account_name field in the given form_name to use to
215  * construct the intial filter string.
216  */
217 function get_initial_filter_by_account(form_name)
218 {
219         var account_id = window.document.forms[form_name].account_id.value;
220         var account_name = escape(window.document.forms[form_name].account_name.value);
221         var initial_filter = "&account_id=" + account_id + "&account_name=" + account_name;
222
223         return initial_filter;
224 }