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

A brief introduction to WordPress themes


WordPress themes are part of what makes WordPress so popular. Before we start coding we need to understand a little bit of how WordPress themes work. When we are creating a new WordPress theme, we need to create some files that will be recognized automatically by WordPress. Most of the files are self-explanatory, but let's take a look at them:

  • header.php: When we load a blog, WordPress transforms it into a single HTML page so that the browser can render it. The header.php file contains the theme code until the </head> tag.

  • sidebar.php: This is an optional file that can be called by using the WordPress get_sidebar() function. This is where we can add the code to render widgets and also render the Sidebar of the theme, in case it has one.

  • footer.php: This is where we will end our HTML code to wrap up the theme. You can also display widgets here if you would like.

  • page.php: This is used to display a single page. Examples of single pages are about...