Book Image

Learning Ext JS 3.2

By : Shea Frederick, Colin Ramsay, Steve 'Cutter' Blades, Nigel White
Book Image

Learning Ext JS 3.2

By: Shea Frederick, Colin Ramsay, Steve 'Cutter' Blades, Nigel White

Overview of this book

<p>As more and more of our work is done through a web browser, and more businesses build web rather than desktop applications, users want web applications that look and feel like desktop applications. Ext JS is a JavaScript library that makes it (relatively) easy to create desktop-style user interfaces in a web application, including multiple windows, toolbars, drop-down menus, dialog boxes, and much more. Yet, most web developers fail to use this amazing library to its full power.</p> <p>This book covers all of the major features of the Ext framework using interactive code and clear explanation coupled with loads of screenshots. Learning Ext JS will help you create rich, dynamic, and AJAX-enabled web applications that look good and perform beyond the expectations of your users.</p> <p>From the building blocks of the application layout, to complex dynamic Grids and Forms, this book will guide you through the basics of using Ext JS, giving you the knowledge required to create rich user experiences beyond typical web interfaces. It will provide you with the tools you need to use AJAX, by consuming server-side data directly into the many interfaces of the Ext JS component library. You will also learn how to use all of the Ext JS widgets and components smartly, through interactive examples.By using a series of straightforward examples backed by screenshots, Learning Ext JS 3.2 will help you create web applications that look good and perform beyond the expectations of your users.</p>
Table of Contents (22 chapters)
Learning Ext JS 3.2
Credits
About the Authors
About the Reviewers
Preface

Overriding methods


Continuing to build our first custom class, we get into overriding methods. As we have previously mentioned, we can override a method of our parent class by defining a method of the same name in the child class. A key component of the Panel class is the initComponent() method, which (as the name suggests) initializes the Panel component. Most methods will never need to be overridden, but sometimes we'll need to override a specific method to add to, or change, the default behavior of a component.

initComponent: function(){
CRM.panels.ContactDetails.superclass.initComponent.call(this);
if (typeof this.tpl === 'string') {
this.tpl = new Ext.XTemplate(this.tpl);
}
},

Note

Ext JS uses superclass as the programmatic reference to the object's parent class object, as CRM.panels.ContactDetails is a subclass of its parent (superclass) Ext.Panel.

With our component, we needed a way to apply a new XTemplate to our component, should one be passed into our ContactDetails class. As a developer...