examples/bootstrap4/dynamic-components.html
[roojs1] / examples / bootstrap4 / dynamic-components.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <title>Testing Dynamic Components</title>
5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
6      <!-- Bootstrap -->
7     <link rel="stylesheet" type="text/css" href="../../css-bootstrap4/bootstrap.min.css">
8     <link rel="stylesheet" type="text/css" href="../../css-bootstrap4/roojs-bootstrap.css">
9     <link rel="stylesheet" type="text/css" href="../../css-bootstrap/font-awesome.css">
10     
11     <script type="text/javascript" src="../../roojs-debug.js"></script>
12     
13     <!-- bootstrap js.. needs to compile it later.. -->
14     <script type="text/javascript" src="../../roojs-bootstrap-debug.js"></script>
15      
16     
17     <!-- test code -->
18     <script type="text/javascript" src="dynamic-components.js"></script>
19   </head>
20   <body id="body">
21     <script type="text/javascript">
22         Roo.onReady(function() {
23             new Dynamic.Component({ do_render: document.body } );
24         });
25     </script>
26   </body>
27 </html>