Ticket #9005: dialog.html
| File dialog.html, 441 bytes (added by , 14 years ago) |
|---|
| Line | |
|---|---|
| 1 | <html> |
| 2 | <head> |
| 3 | </head> |
| 4 | <body> |
| 5 | |
| 6 | <script type="text/javascript"> |
| 7 | $('#dialogForm').ready(function() { |
| 8 | var editor = CKEDITOR.instances['htmlEditor']; |
| 9 | if (editor) { |
| 10 | editor.destroy(true); |
| 11 | editor = null; |
| 12 | } |
| 13 | |
| 14 | editor = CKEDITOR.replace('htmlEditor'); |
| 15 | editor.setData('<p>Lorem ipsum</p>'); |
| 16 | }); |
| 17 | </script> |
| 18 | |
| 19 | <div id="dialogForm"> |
| 20 | <textarea id="htmlEditor" name="htmlEditor"></textarea> |
| 21 | </div> |
| 22 | |
| 23 | </body> |
| 24 | </html> |
