summaryrefslogtreecommitdiffstats
path: root/winery/org.eclipse.winery.topologymodeler/src/main/webapp/jsp/shared/dialogs.jsp
blob: 21a7fec24f7771efa56d6f03f3d2232de2420cb8 (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
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
83
<%--
/*******************************************************************************
 * Copyright (c) 2012-2013 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
 *    Yves Schubert - switch to bootstrap 3
 *******************************************************************************/
--%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>

<script>
/**
 * Displays a nice message box with "yes" and "no"
 *
 * TODO: currently cannot be recursively called
 *
 * @param msg      Message to display
 * @param fnOnYes  function to be called if user presses "yes"
 * @param title    (optional) title of the dialog
 */
function vConfirmYesNo(msg, fnOnYes, title) {
	title = title || "Please confirm";
	$("#diagyesnotitle").text(title);
	$("#diagyesnomsg").text(msg);
	$("#diagyesnoyesbtn").off("click");
	$("#diagyesnoyesbtn").on("click", function() {
		var diag = $("#diagyesno");
		// quick hack to get fnOnYes() working -> use the hidden.bs.modal event
		diag.on("hidden.bs.modal", function() {
			fnOnYes();
			diag.off("hidden.bs.modal");
		});
		diag.modal("hide");
	});
	$("#diagyesno").modal("show");
}

$(function() {
	$("#diagyesno").on("shown.bs.modal", function() {
		$("#diagyesnoyesbtn").focus();
	});
});
</script>

<div class="modal fade z1051" id="diagyesno">
	<div class="modal-dialog">
		<div class="modal-content">
			<div class="modal-header">
				<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
				<h4 class="modal-title" id="diagyesnotitle"></h4>
			</div>
			<div class="modal-body">
				<p id="diagyesnomsg"></p>
			</div>
			<div class="modal-footer">
				<button type="button" class="btn btn-default" data-dismiss="modal">No</button>
				<button id="diagyesnoyesbtn" type="button" class="btn btn-primary">Yes</button>
			</div>
		</div>
	</div>
</div>

<div class="modal fade z1060" id="diagmessage">
	<div class="modal-dialog">
		<div class="modal-content">
			<div class="modal-header">
				<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
				<h4 class="modal-title" id="diagmessagetitle"></h4>
			</div>
			<div class="modal-body" id="diagmessagemsg">
			</div>
			<div class="modal-footer">
				<button type="button" class="btn btn-primary" data-dismiss="modal">OK</button>
			</div>
		</div>
	</div>
</div>