Old ExtJS MetaTabsForm Extension
This example shows how to use Ext.ux.MetaTabsForm extension. Configuration of tabs and form fields is sent from the server as metaData.
This example shows how to use Ext.ux.MetaTabsForm extension. Configuration of tabs and form fields is sent from the server as metaData.
Simple LOV (List Of Values) combo. Individual values are selected in dropdown list and overall value is delimited list of values.
This plugin adds menu and dblclick handler to a window/panel icon. Default menu contains Restore, Minimize, Maximize and Close items. Also, you can close the window by dblclicking the icon by default.
Ext.ux.grid.Search Plugin adds searching capabilities to Ext grids. It creates menu and trigger field in a grid toolbar where user can select which fields to search and enter the text to search for.
FileTreePanel is client-server application where client (browser) provides the user interface (UI) which displays the tree and context menu, handles drag & drop operations, etc. The filesystem that is displayed and managed by the UI is stored on a server.
This extension implements tree panel with checkboxes that allow selection of individual branches or leafs.
The checked nodes define a “value” of the tree that is returned as list of values separated by a configurable separator.
Cell actions are small images, icons, that fit into grid cells right of the value.
When an icon is clicked beforeaction event is fired first followed by action event. Action can be cancelled by returning false from beforeaction event handler.
This is very simple extension that helps to create trees from static arrays.
It adds configuration property children to Ext.tree.TreePanel that accepts multilevel nested array with the definition of tree nodes.
Examples application from my old website. The code of examples was written in/for ExtJS 3.x therefore it won’t work without modifications in Ext 4.x. However, the principles and coding practices can still be very useful.
In essence, factory functions are class methods that manufacture items or other properties during the instantiation of the class. This article explains pros and cons of factory function and how to use them correctly.