Book Image

Mastering Ext JS

By : Loiane Groner
Book Image

Mastering Ext JS

By: Loiane Groner

Overview of this book

<p>Ext JS 4 is a JavaScript framework that provides you with the resources to build multi-browser, high-performance, and rich Internet applications.<br /><br />Mastering Ext JS is a practical, hands-on guide that will teach you how to develop a complete application with Ext JS. You’ll begin by learning how to create the project’s structure and login screen before mastering advanced level features such as dynamic menus and master-detail grids, before finally preparing the application for production.<br /><br />Mastering Ext JS will help you to utilize Ext JS to its full potential and will show you how to create a complete Ext JS application from the scratch, as well as explaining how to create a Wordpress theme.</p> <p><br />You will learn how to create user and group security, master-detail grids and forms, charts, trees, and how to export data to excel including PDF and images, always focusing on best practices.</p> <p><br />You will also learn how to customize themes and how to prepare the application to be ready for deployment upon completion. Each chapter of the book is focused on one task and helps you understand and master an individual aspect of the application.</p> <p><br />By the end of the book, you will have learned everything you need to know to truly master Ext JS and to start building advanced applications.</p>
Table of Contents (20 chapters)
Mastering Ext JS
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Index

Debugging Ext JS applications


Throughout this book, we learned that debugging is important, especially when we were learning an easier way to figure out the correct ComponentQuery selector. When developing applications with Ext JS, it is mandatory to use a debug tool. Not only for debugging, but you will also be able to learn more about the framework, and it is a great learning exercise.

A few things we always need to remember while creating Ext JS applications (not only Ext JS, but JavaScript in general) are: case sensitive matters, the class LoginScreen is different from Login screen. Be careful with reserved words (http://mattsnider.com/reserved-words-in-javascript/): you cannot use them as namespace, name of classes, and packages nor as variable names. Check spelling, this is very important, sometimes when we are typing, we can type an extra character (fat finger syndrome).

If you were programming in JavaScript almost 10 years ago, our only friend was the dear alert. We used to put several...