Subversion Repositories DevTools

Rev

Rev 6885 | Rev 6916 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6885 Rev 6886
Line 71... Line 71...
71
                type : "POST",
71
                type : "POST",
72
                data : function (o){
72
                data : function (o){
73
<%If parRtagId <> "" Then %>
73
<%If parRtagId <> "" Then %>
74
                    o.rtag_id = "<%=parRtagId%>";
74
                    o.rtag_id = "<%=parRtagId%>";
75
<%End If%>
75
<%End If%>
76
                    var fs = '';
76
                    if ($("#fsReason input:checkbox:not(:checked)").length > 0){
77
                    jQuery.each($('#fsReason input:checked'),function(i,val){
77
                        jQuery.each($('#fsReason input:checked'),function(i,val){
78
                        fs += $(this).val();
78
                             o.freason += $(this).val();
79
                        });
79
                            });
80
                    o.freason=fs;
80
                    }
81
                    fs = '';
81
                    if($("#fsResult input:checkbox:not(:checked)").length > 0){
82
                    jQuery.each($('#fsResult input:checked'),function(i,val){
82
                        jQuery.each($('#fsResult input:checked'),function(i,val){
83
                        fs += $(this).val();
83
                            o.fresult += $(this).val();
84
                        });
84
                            });
85
                    o.fresult=fs;
85
                    }
86
                }
86
                }
87
            },
87
            },
88
            dom: "frtiS",
88
            dom: "frtiS",
89
            scrollY: $( document ).height() 
89
            scrollY: $( document ).height() 
90
<%If parRtagId <> "" Then %>
90
<%If parRtagId <> "" Then %>