ExtJS
Here are some fun and interesting things I've been doing with the Sencha ExtJS JavaScript framework.
HTML Editor (Ext.form.HtmlEditor)
html_editor.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all.css" /> <script type="text/javascript" src="extjs/ext-all.js"></script> <script type='text/javascript' src="html_editor.js"></script> </head> <body></body> </html>
html_editor.js
Ext.onReady(function() { Ext.tip.QuickTipManager.init(); Ext.create('Ext.form.HtmlEditor', { width: 500, height: 250, renderTo: Ext.getBody() }).show(); });