mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 00:07:44 +02:00
39 lines
1.7 KiB
HTML
39 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Bootstrap Modal demo</title>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js"></script>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
|
|
|
<script src="modaldemo2.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="jumbotron">
|
|
<div class="container">
|
|
<h2 class="display-4">TBootstrapModal demo</h2>
|
|
<p class="lead">This is simple demo where a <em>TBootstrapModal</em> class is used to show a modal dialog. The modal HTML is specified in the <em>template</em> property.</p>
|
|
<p>The modal dialog contains some input elements, the values of these can be retrieved by defining the elements
|
|
through the <var>References</var> collection: all values for references with <em>Kind=mikValue</em> will be collected and passed on in the <em>OnHide</em> event.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<hr class="my-4">
|
|
<div id="modals-parent">
|
|
</div>
|
|
<div class="container py-5">
|
|
<div class="d-flex justify-content-center">
|
|
<button id="btnShowModal" class="btn btn-primary">Show modal dialog</button>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
rtl.showUncaughtExceptions=true;
|
|
window.addEventListener("load", rtl.run);
|
|
</script>
|
|
|
|
|
|
</body>
|
|
</html>
|