aboutsummaryrefslogtreecommitdiffstats
path: root/winery/org.eclipse.winery.repository/src/main/webapp/WEB-INF/tags/typeswithshortnameasselect.tag
blob: f658b2b26d67f245ac8983aebaff44895585bbb6 (plain)
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
<%--
/*******************************************************************************
 * Copyright (c) 2012-2014 University of Stuttgart.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and the Apache License 2.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *    Oliver Kopp - initial API and implementation and/or initial documentation
 *******************************************************************************/
--%>
<%@tag description="Renders pairs of types with shortname as select element" pageEncoding="UTF-8"%>

<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<%@attribute name="label" required="true"%>
<%@attribute name="selectname" required="true" description="Used as Name and as Id"%>
<%@attribute name="typesWithShortNames" required="true" type="java.util.Collection"%>
<%@attribute name="type" required="true" description="The type of all types. E.g., planlanguage"%>

<div class="form-group">
<label for="${selectname}">${label}</label>

<div style="display: block; width: 100%">
	<select name="${selectname}" id="${selectname}" style="width:300px;">
		<c:forEach var="t" items="${typesWithShortNames}">
			<option value="${t.type}">${t.shortName}</option>
		</c:forEach>
	</select>
	<button type="button" class="btn btn-info btn-xs" onclick="updateTypesWithShortNames();">Refresh</button>
	<a href="${pageContext.request.contextPath}/admin/#${type}s" class="btn btn-info btn-xs" target="_blank">Manage</a>
</div>
</div>

<script>
function updateTypesWithShortNames() {
	vShowNotification('not yet implemented')
	/* Implementation idea:
		* get on ...${type}s resource with app/json and ?select2 - this is the direct select2 data
		* replace select element with input: select2 cannot update an input element
	*/
}

</script>