JavaScript und Umlaute in UTF-8-Codierung funktioniert nicht mit der JavaScript-Funkt...
[kivitendo-erp.git] / js / follow_up.js
1 function follow_up_window() {
2   var width = 900;
3   var height = 700;
4   var parm = centerParms(width, height) + ",width=" + width + ",height=" + height + ",status=yes,scrollbars=yes";
5
6   url = "fu.pl?" +
7     "action=add" + "&" +
8     "POPUP_MODE=1";
9
10   var trans_rowcount = document.getElementsByName("follow_up_rowcount");
11
12   if (typeof trans_rowcount != "undefined") {
13     for (i = 1; i <= trans_rowcount[0].value; i++) {
14       var trans_id   = document.getElementsByName("follow_up_trans_id_" + i);
15       var trans_type = document.getElementsByName("follow_up_trans_type_" + i);
16       var trans_info = document.getElementsByName("follow_up_trans_info_" + i);
17
18       url += "&" +
19         "trans_id_"   + i + "=" + encodeURIComponent(typeof trans_id   != "undefined" ? trans_id[0].value   : "") + "&" +
20         "trans_type_" + i + "=" + encodeURIComponent(typeof trans_type != "undefined" ? trans_type[0].value : "") + "&" +
21         "trans_info_" + i + "=" + encodeURIComponent(typeof trans_info != "undefined" ? trans_info[0].value : "");
22     }
23
24     url += "&trans_rowcount=" + encodeURIComponent(trans_rowcount[0].value);
25   }
26
27   //alert(url);
28   window.open(url, "_new_generic", parm);
29 }