Ticket #1871: test1.html

File test1.html, 0.5 kB (added by jowenn@…, 2 years ago)

testcase

Line 
1<html>
2<head>
3        <script type="text/javascript">
4                var djConfig = {
5                        isDebug: true
6                };
7        </script>
8<script type="text/javascript" src="./dojo-0.4.0-ajax/dojo.js"></script>
9<script type="text/javascript">
10    dojo.require("dojo.widget.Editor2");
11    function blah() {
12        var w=dojo.widget.manager.getWidgetById("myedit");
13        w.close(true);
14    }
15</script>
16</head>
17<body>
18<textarea style="height:200px; overflow-y:scroll"  dojoType="Editor2" id="myedit" name="myedit">Initial content</textarea>
19<a href="javascript:blah();">close editor</a>
20</body>
21</html>