2150 |
mathias |
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
|
2 |
"http://www.w3.org/TR/html4/strict.dtd">
|
|
|
3 |
<html>
|
|
|
4 |
<head>
|
|
|
5 |
<title>Editor Test</title>
|
|
|
6 |
|
|
|
7 |
<style type="text/css">
|
|
|
8 |
@import "../../dojo/resources/dojo.css";
|
|
|
9 |
@import "css/dijitTests.css";
|
|
|
10 |
</style>
|
|
|
11 |
<script type="text/javascript" src="../../dojo/dojo.js"
|
|
|
12 |
djConfig="parseOnLoad: true, isDebug: true"></script>
|
|
|
13 |
<script type="text/javascript" src="_testCommon.js"></script>
|
|
|
14 |
|
|
|
15 |
<script type="text/javascript" src="../Editor.js"></script>
|
|
|
16 |
<script type="text/javascript">
|
|
|
17 |
dojo.require("dijit.Editor");
|
|
|
18 |
dojo.require("dijit._editor.plugins.AlwaysShowToolbar");
|
|
|
19 |
dojo.require("dijit._editor.plugins.EnterKeyHandling");
|
|
|
20 |
// dojo.require("dijit._editor.plugins.FontChoice"); // 'fontName','fontSize','formatBlock'
|
|
|
21 |
dojo.require("dijit._editor.plugins.TextColor");
|
|
|
22 |
dojo.require("dijit._editor.plugins.LinkDialog");
|
|
|
23 |
dojo.require("dojo.parser"); // scan page for widgets and instantiate them
|
|
|
24 |
</script>
|
|
|
25 |
</head>
|
|
|
26 |
<body>
|
|
|
27 |
|
|
|
28 |
<h1 class="testTitle"><label for="editor1">Editor + Plugins Test</label></h1>
|
|
|
29 |
|
|
|
30 |
<div style="border: 1px solid black;">
|
|
|
31 |
<div dojoType="dijit.Editor" id="editor1"><p>This instance is created from a div directly with default toolbar and plugins</p></div>
|
|
|
32 |
</div>
|
|
|
33 |
<button onClick="dijit.byId('editor1').destroy()">destroy</button>
|
|
|
34 |
<button onclick="console.log(dijit.byId('editor1').getValue().length)">getValue</button>
|
|
|
35 |
<hr/>
|
|
|
36 |
<div style="border: 1px dotted black;">
|
|
|
37 |
<h3><label for="thud">thud - from textarea</label></h3>
|
|
|
38 |
<textarea dojoType="dijit.Editor" height=""
|
|
|
39 |
extraPlugins="['dijit._editor.plugins.AlwaysShowToolbar']"
|
|
|
40 |
styleSheets="../../dojo/resources/dojo.css" id="thud">
|
|
|
41 |
<p>
|
|
|
42 |
This editor is created from a textarea with AlwaysShowToolbar plugin (don't forget to set height="").
|
|
|
43 |
</p>
|
|
|
44 |
<p>
|
|
|
45 |
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean
|
|
|
46 |
semper sagittis velit. Cras in mi. Duis porta mauris ut ligula. Proin
|
|
|
47 |
porta rutrum lacus. Etiam consequat scelerisque quam. Nulla facilisi.
|
|
|
48 |
Maecenas luctus venenatis nulla. In sit amet dui non mi semper iaculis.
|
|
|
49 |
Sed molestie tortor at ipsum. Morbi dictum rutrum magna. Sed vitae
|
|
|
50 |
risus.
|
|
|
51 |
</p>
|
|
|
52 |
</textarea>
|
|
|
53 |
<h3>..after</h3>
|
|
|
54 |
</div>
|
|
|
55 |
<hr/>
|
|
|
56 |
<div style="border: 1px dotted black;">
|
|
|
57 |
<h3><label for="blah">blah entry</label></h3>
|
|
|
58 |
<textarea dojoType="dijit.Editor"
|
|
|
59 |
plugins="['bold','italic','|','createLink','foreColor','hiliteColor']"
|
|
|
60 |
styleSheets="../../dojo/resources/dojo.css" id="blah">
|
|
|
61 |
This instance includes optional toolbar buttons which pull in additional ui (dijit) code.
|
|
|
62 |
Note the dojo.require() statements required to pull in the associated editor plugins to make
|
|
|
63 |
this work.
|
|
|
64 |
</textarea>
|
|
|
65 |
<h3>..after</h3>
|
|
|
66 |
</div>
|
|
|
67 |
<hr/>
|
|
|
68 |
<div style="border: 1px dotted black;">
|
|
|
69 |
<h3><label for="blah2">Another blah entry</label></h3>
|
|
|
70 |
<textarea dojoType="dijit.Editor"
|
|
|
71 |
plugins="['bold','italic','|',{name:'dijit._editor.plugins.LinkDialog'}]"
|
|
|
72 |
styleSheets="../../dojo/resources/dojo.css" id="blah2">
|
|
|
73 |
This instance demos how to:
|
|
|
74 |
<ol>
|
|
|
75 |
<li>specify which plugins to load (see the plugins property): this instance loads EnterKeyHandling plugin, among others;</li>
|
|
|
76 |
<li>specify options for a plugin (see the last item in the plugins array)</li>
|
|
|
77 |
</ol>
|
|
|
78 |
</textarea>
|
|
|
79 |
<h3>..after</h3>
|
|
|
80 |
</div>
|
|
|
81 |
</body>
|
|
|
82 |
</html>
|