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();
});

Information

This personal weblog was started way back on July 21, 2001 which means that it is 7-21-2001 old.

So far this blog contains no less than 2531 entries and as many as 1877 comments.

Recent Entries

  • M.2 HAT+
    The Raspberry Pi M.2 HAT+ M Key enables you to connect M.2 peripherals such as NVMe drives and other PCIe accessories to Raspberry Pi ... >>
  • Odin and raylib
    There are so many tools and libraries out there with which to do proper game development and it is insanely difficult to choose the ... >>
  • Paradox and Infinity
    Here is a shout out to the MITx Online course called Paradox and Infinity which just started this week. I am really looking forward ... >>
  • Open media vault
    This is my Raspberry Pi 4 Model B Rev 1.2 setup as a simple NAS using the open source openmediavault. Attached an external SSD ... >>
  • New world record
    Looks like I have achieved a personal best for number of visits to the sport gym in a single month: 14x. Need to work ... >>