views:

128

answers:

2

Do you know of any sample application written in ExtJs which source code is open to the public? I'd like to see how code is modularized because I'm having some problems in organizing my own app.

+2  A: 

There are several:

http://www.browsercrm.com/

http://www.feyasoft.com/

I would suggest though looking at examples and plugins of saki and of the general examples pages on the extjs website.

http://extjs.eu/

http://www.sencha.com/products/js/

As for organising an extjs app, think in terms of the way you might program any GUI orientated application, with web based applications i usually work from the back end to the front. EG, the database design and models greatly influence how the front end layout and events are organised.

DRL
+2  A: 

In addition to the good links provided by DamienL, take a look at the ExtJS In Action book from Manning (written by Jay Garcia) http://extjsinaction.com/ He walks the reader through building a complete application.

SBUJOLD