Book Image

Ext JS Application Development Blueprints

Book Image

Ext JS Application Development Blueprints

Overview of this book

Table of Contents (18 chapters)
Ext JS Application Development Blueprints
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Summary


This chapter has given us a number of angles to approach two of the most important parts of building a successful application: fixing issues and adding polish. While explicit customer requirements form the main body of our work, we should always strive to make sure that our projects are performant and as bug-free as possible.

The Chrome Developer Tools are an invaluable weapon in our arsenal. By opening a window in the otherwise dark world of debugging and performance, we can take educated steps to quickly resolve issues. Stepping through our own code and that of the Ext JS framework becomes significantly easier with the power of breakpoints and the call stack explorer.

In the next chapter, we'll take our final step to building a well-rounded and robust application. While we are constantly working to build the best architecture we can, automated testing can provide a level of reassurance that takes the solidity of our work to the next level.

Code changes and refactoring can be done...