]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/include/javascript/popup_parent_helper.js
Release 6.2.0
[Github/sugarcrm.git] / jssource / src_files / include / javascript / popup_parent_helper.js
1 /*********************************************************************************
2  * SugarCRM Community Edition 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         //globally changing width and height of standard pop up window from 600 x 400 to 800 x 800 
60         width = (width == 600) ? 800 : width;
61         height = (height == 400) ? 800 : height;
62         
63         // launch the popup
64         URL = 'index.php?'
65                 + 'module=' + module_name
66                 + '&action=Popup';
67         
68         if(initial_filter != '')
69         {
70                 URL += '&query=true' + initial_filter;
71         }
72         
73         if(hide_clear_button)
74         {
75                 URL += '&hide_clear_button=true';
76         }
77         
78         windowName = module_name + '_popup_window' + popupCount;
79         popupCount++;
80         
81         windowFeatures = 'width=' + width
82                 + ',height=' + height
83                 + ',resizable=1,scrollbars=1';
84
85         if (popup_mode == '' && popup_mode == 'undefined') {
86                 popup_mode='single';            
87         }
88         URL+='&mode='+popup_mode;
89         if (create == '' && create == 'undefined') {
90                 create = 'false';
91         }
92         URL+='&create='+create;
93
94         if (metadata != '' && metadata != 'undefined') {
95                 URL+='&metadata='+metadata;     
96         }
97         
98         win = window.open(URL, windowName, windowFeatures);
99
100         if(window.focus)
101         {
102                 // put the focus on the popup if the browser supports the focus() method
103                 win.focus();
104         }
105         
106         win.popupCount = popupCount;
107
108         return win;
109 }
110
111 /**
112  * The reply data must be a JSON array structured with the following information:
113  *  1) form name to populate
114  *  2) associative array of input names to values for populating the form
115  */
116 var from_popup_return  = false;
117 function set_return(popup_reply_data)
118 {
119         from_popup_return = true;
120         var form_name = popup_reply_data.form_name;
121         var name_to_value_array = popup_reply_data.name_to_value_array;
122         
123         for (var the_key in name_to_value_array)
124         {
125                 if(the_key == 'toJSON')
126                 {
127                         /* just ignore */
128                 }
129                 else
130                 {
131                         var displayValue=name_to_value_array[the_key].replace(/&amp;/gi,'&').replace(/&lt;/gi,'<').replace(/&gt;/gi,'>').replace(/&#039;/gi,'\'').replace(/&quot;/gi,'"');;
132                         if(window.document.forms[form_name] && window.document.forms[form_name].elements[the_key])
133                                 window.document.forms[form_name].elements[the_key].value = displayValue;
134                 }
135         }
136 }
137
138 function set_return_and_save(popup_reply_data)
139 {
140         var form_name = popup_reply_data.form_name;
141         var name_to_value_array = popup_reply_data.name_to_value_array;
142         
143         for (var the_key in name_to_value_array)
144         {
145                 if(the_key == 'toJSON')
146                 {
147                         /* just ignore */
148                 }
149                 else
150                 {
151                         window.document.forms[form_name].elements[the_key].value = name_to_value_array[the_key];
152                 }
153         }
154         
155         window.document.forms[form_name].return_module.value = window.document.forms[form_name].module.value;
156         window.document.forms[form_name].return_action.value = 'DetailView';
157         window.document.forms[form_name].return_id.value = window.document.forms[form_name].record.value;
158         window.document.forms[form_name].action.value = 'Save';
159         window.document.forms[form_name].submit();
160 }
161
162 function set_return_and_save_targetlist(popup_reply_data)
163 {
164         var form_name = popup_reply_data.form_name;
165         var name_to_value_array = popup_reply_data.name_to_value_array;
166         var form_index = document.forms.length - 1;
167         sugarListView.get_checks();
168         var uids = document.MassUpdate.uid.value;
169         if (uids == '') {
170                 return false;
171         }
172         /*
173          * Add the value returned from the popup to the form for submittal
174          */
175         for (var the_key in name_to_value_array)
176         {
177                 if(the_key == 'toJSON')
178                 {
179                         /* just ignore */
180                 }
181                 else
182                 {
183                         for ( i = form_index; i >= 0; i--)
184                         {
185                                 if ( form_name == window.document.forms[form_index] )
186                                 {
187                                         form_index = i;
188                                         break;
189                                 }
190                         }
191                         window.document.forms[form_index].elements[get_element_index(form_index,the_key)].value = name_to_value_array[the_key];
192                 }
193         }
194         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;
195         window.document.forms[form_index].elements[get_element_index(form_index,"return_action")].value = 'ListView';
196         window.document.forms[form_index].elements[get_element_index(form_index,"uids")].value = uids;
197         window.document.forms[form_index].submit();
198 }
199
200
201 function get_element_index(form_index,element_name) {
202         var j = 0;
203         while (j < window.document.forms[form_index].elements.length) {
204                 if(window.document.forms[form_index].elements[j].name == element_name) {
205                         index = j;
206                         break;
207                 }
208                 j++;
209         }
210         return index;
211 }
212
213
214 /**
215  * This is a helper function to construct the initial filter that can be
216  * passed into the open_popup() function.  It assumes that there is an
217  * account_id and account_name field in the given form_name to use to
218  * construct the intial filter string.
219  */
220 function get_initial_filter_by_account(form_name)
221 {
222         var account_id = window.document.forms[form_name].account_id.value;
223         var account_name = escape(window.document.forms[form_name].account_name.value);
224         var initial_filter = "&account_id=" + account_id + "&account_name=" + account_name;
225
226         return initial_filter;
227 }