Aug21
ExtJs has two well-known layouts called Accordion and Vbox.
Basically, in a vertical list of panels, AccordionLayout manages multiple Panels in an expandable accordion style such that only one Panel can be expanded at any given time. Each Panel has built-in support for expanding and collapsing.
VboxLayout, on the other hand, arranges items vertically down a Container. This layout optionally divides available vertical space between child items containing a numeric flex configuration.
From the need of one of my projects, I came up with a custom hybrid layout between Accordion and Vbox.. continue reading »
Mar31
Currently, ExtJS 3.1.1 doesn’t support Vertical TabPanel. Here is my simple custom Vertical TabPanel ux class. Currently, it supports the same set of features as Ext.Tabpanel except advanced auto tab-scrolling feature. Default position is “left”.
Tested working on FF3.6, IE7, IE8, Chrome 4, Safari 4, and Opera 10.
You can put the source files in ExtJS Tabs folder to test: ext-3.1.1\examples\tabs\..
Check out the live example here
Download the whole example
Download the extension code only
Extension updated to work with ExtJS 3.1.2
Cheers,
Totti
Feb11
This is a quick solution to disabling browser default context menu when right-clicking in ExtJS.
Ext.getBody().on("contextmenu", Ext.emptyFn, null, {preventDefault: true});
continue reading »