Skip to main content
summaryrefslogtreecommitdiffstats
blob: 625126bca17ef06b26a01d45449ef68772b76bcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<%
/*******************************************************************************
 * Copyright (c) 2001, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
%>
<%@ page contentType="text/html; charset=UTF-8" import="org.eclipse.wst.ws.internal.explorer.platform.wsil.constants.*,
                                                                                          org.eclipse.wst.ws.internal.explorer.platform.constants.*"%>

<jsp:useBean id="controller" class="org.eclipse.wst.ws.internal.explorer.platform.perspective.Controller" scope="session"/>
<jsp:include page="/scripts/tables.jsp" flush="true"/>
<script language="javascript" src="<%=response.encodeURL(controller.getPathWithContext("scripts/browserdetect.js"))%>">
</script>
<script language="javascript">

    function wsilHandleCheckAllClick(tableContainerId, checkAllCheckbox) {
        var table = getTable(tableContainerId);
        for (var i=numberOfHeaderRows; i<table.rows.length; i++) {
            var rowCheckboxCell = table.rows[i].getElementsByTagName("td").item(0);
            var rowCheckbox = rowCheckboxCell.childNodes[0];
            rowCheckbox.checked = checkAllCheckbox.checked;
            if (rowCheckbox.checked) {
                highlightRow(table.rows[i],"rowcolor");
                rowCheckbox.name = "<%=ActionInputs.VIEWID%>";
            }
            else {
                highlightRow(table.rows[i],"tablecells");
                rowCheckbox.name = "";
            }
        }
    }

    function validateCheckBoxInput(checkbox, isChecked) {
        if (isChecked) {
            checkbox.name = "<%=ActionInputs.VIEWID%>";
        }
        else {
            checkbox.name = "";
        }
        handleRowCheckboxClick();
    }

    function twistInit(tableContainerId,twistImageName) {
        var tableContainer = document.getElementById(tableContainerId);
        var table = getTable(tableContainerId);
        if (table.rows.length > numberOfHeaderRows) {
            tableContainer.style.display = "none";
            twist(tableContainerId, twistImageName);
        }
        else {
            tableContainer.style.display = "";
            twist(tableContainerId, twistImageName);
        }
    }

    function addKeyValueToRow(row, key, value) {
        var keyText = document.createTextNode(key);
        var valueText = document.createTextNode(value);
        var newCol = document.createElement("td");
        var newCol2 = document.createElement("td");
        newCol.appendChild(keyText);
        newCol.className = "tablecells";
        newCol2.appendChild(valueText);
        newCol2.className = "tablecells";
        row.appendChild(newCol);
        row.appendChild(newCol2);
    }

    function clearTable(tableBody, numHeader) {
        for(var i = numHeader; i < tableBody.rows.length; i++) {
            tableBody.deleteRow(i);
            i--;
        }
    }

</script>

Back to the top