Skip to main content
summaryrefslogtreecommitdiffstats
blob: e675dc95d9f865a4f06a86ca86439f421c4020ee (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
<%
/*******************************************************************************
 * 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 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
%>
<%@ page contentType="text/html; charset=UTF-8" %>

<jsp:useBean id="controller" class="org.eclipse.wst.ws.internal.explorer.platform.perspective.Controller" scope="session"/>
<jsp:include page="/scripts/formsubmit.jsp" flush="true"/>
<jsp:include page="/wsil/scripts/wsilTable.jsp" flush="true"/>
<script language="javascript">
    function isSomethingSelected(tableContainerId) {
        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];
            if (rowCheckbox.checked)
                return true;
        }
        alert("<%=controller.getWSILPerspective().getMessage("MSG_ERROR_NOTHING_SELECTED")%>");
        return false;
    }

    function setFormLocationAndSubmit(tableContainerId, form, location) {
        if (isSomethingSelected(tableContainerId))
            setLocationAndSubmit(form, location);
    }

    function setLocationAndSubmit(form, location) {
        if (handleSubmit(form))
        {
          form.action = location;
          form.submit();
        }
    }
</script>

Back to the top