Skip to main content

ExtJs URL's



















Record edit panel
http://recordform.extjs.eu/


http://www.dojochina.com/?q=node/799
(Live search) http://extjs.com/deploy/dev/examples/form/forum-search.html
http://extjs.com/deploy/dev/examples/form/forum-search.js

EXT.ux (User extensions)
http://extjs.com/forum/forumdisplay.php?f=21

htmleditor in a window (Form panel in window)
http://extjs.com/forum/showthread.php?t=25551

Tree+checkbox in 2.0 in JSP
http://extjs.com/forum/showthread.php?t=27267

Menu in Form Panel ina window:
http://extjs.com/forum/showthread.php?t=29884

large grid data in a window:(demo)
http://www.siteartwork.de/livegrid_demo/
http://extjs.com/forum/showthread.php?p=84902#post84902


Other Plug-ins;
Ext JS LiveGrid Component: http://www.siteartwork.de/livegrid
Live Grid:
http://extjs.com/forum/showthread.php?p=84902#post84902

Ext.ux.YoutubePlayer: http://www.siteartwork.de/youtubeplayer
Ext.ux.Wiz (wizard-component): http://www.siteartwork.de/wizardcomponent
http://www.siteartwork.de

editable grid: add colors to rows & images in grid column
http://extjs.com/forum/showthread.php?t=18435&highlight=gridPanel
------------------------------

ExtJs 2.1 :
http://extjs.com/deploy/dev/docs/

EXTJS2.0 links:
http://www.gwt-ext.com/demo/
http://extjs.com/blog/2008/02/01/ides-plugins-and-tools-for-ext-js-20/

Aptana:
lib file for aptana:
http://orsox.mocis.at/download.php?view.1

downloads:
http://www.aptana.com/node/350

plug-ins
http://www.aptana.com/search/node/aptana+plug-in+for+eclipse
http://update.aptana.com/install/3.2/
http://www.linuxjournal.com/article/9620

EXTJS:
http://extjswordpress.net/theme-revealed/
http://www.ajaxrain.com/tagcloud.php?tag=extjs#script
http://extjs.com/explorer/#overview (codes- demos)

http://extjs.com/forum/archive/index.php/t-3107.html
http://extjs.com/forum/showthread.php?t=15982
http://extjs.com/forum/showthread.php?p=68611#post68611
http://extjs.com/forum/showthread.php?t=13736&highlight=editable+gridpanel

Example Layout site:
http://examples.extjs.eu/

forums for Extjs:
http://inezha.com/p/7631575?PageIndex=10
http://extjs.com/forum/archive/index.php/t-8353.html

Combo control:
http://extjs.com/forum/archive/index.php/t-26959.html

Number field in Grid:
http://extjs.com/forum/showthread.php?p=148459

Grid Row color:
http://www.hastentechnologies.com/blog/post/ExtJs-Tips-for-GridPanel-Row---Marking2c-Colouring2c-Focusing--Special-Key-Event-Firing.aspx

Editable Grid syntax function:
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_22802044.html

Grid video :
www.youtube.com/watch?v=qQWJtfW5Ovs

Json Grid sample
http://extjs.org.cn/extjs/examples/grid/json-grid.html

Xtemplate:
http://www.experts-exchange.com/Programming/Languages/Scripting/AJAX/Q_23497098.html

Dataview problems:
http://extjs.com/forum/showthread.php?p=135936

Good Examples:
http://examples.extjs.eu/

All ExtJS2.0 forums:
http://extjs.com/forum/archive/index.php/f-9-p-22.html

EXTjs + FCK editor:
http://extjs.com/forum/archive/index.php/t-19839.html

EXTJS Editor Grid forum: for complete use of Editable Gird - AJAX ::::
http://extjs.com/forum/showthread.php?t=18435

FormPanel (xtype submit)
http://www.extjs.com/deploy/dev/examples/statusbar/statusbar-advanced.html
http://extjs.com/forum/archive/index.php/t-10666.html
http://extjs.com/forum/archive/index.php/t-10666.html


Load data from xml:(FormPanel)
http://www.extjs.com/deploy/dev/examples/form/xml-form.html

Comments

Popular posts from this blog

Ext4 Apply Store Filtering

In extjs4.1: There are many way for store filtering . Some of code i give here Filtering by single field: store . filter ( 'eyeColor' , 'Brown' );   Alternatively, if filters are configured with an  id , then existing filters store may be  replaced by new filters having the same  id . Filtering by single field: store . filter ( "email" , /\.com$/ );   Using multiple filters: store . filter ([ { property : "email" , value : /\.com$/ }, { filterFn : function ( item ) { return item . get ( "age" ) > 10 ; }} ]);   Using  Ext.util.Filter  instances instead of config objects (note that we need to specify the root config option in this case): store . filter ([ Ext . create ( ' Ext.util.Filter ' , {   property : "email" , value : /\.com$/ , root : 'data' }),   Ext . create ( ' Ext.util.Filter ' , {   filterFn : function ( item ) {   return item . get ( &

ExtJS - Grid panel features

What can we do with ExtJS GridPanel? I have to develop a lot of applications in my web app and I see that grid component of ExtJS may fit in. However, I am not aware of what all things I can do with the - off the shelf available framework pieces - available plug-ins in the marketplace and - custom development through my own developers This is a typical question that we hear from the business users who wants to design an application by keeping the framework’s capability in perspective. In this article I have tried to put the list of stuff you can do with grid and hopefully that shall enable you to take advantage of the beauty of ExtJS. Pre-requisites This article assumes that you are familiar with basics of ExtJS What are the available options? In this section I will be taking you through some of the commonly seen usage of ExtJS grid panel. While covering all the capabilities of grid may not be possible, I am sure it will be helpful for the business users who want to

EXTJS - Way to get a reference to the viewport from any controller

An easy way to get a reference to the viewport from any controller Here's an easy way to get a reference to your viewport from any controller: Ext.application({ launch: function(){ this.viewport = Ext.ComponentQuery.query('viewport')[0]; this.centerRegion = this.viewport.down('[region=center]'); } }); then, inside say, a controller, you can call this: this.application.viewport to get a reference to the viewport.