- Learning Ext JS(Fourth Edition)
- Carlos A. Méndez Crysfel Villa Armando Gonzalez
- 203字
- 2021-07-16 13:20:29
Chapter 2. The Core Concepts
In this chapter, you're going to learn about the class system, which was first introduced in Ext JS version 4. You are also going to learn how to load classes dynamically and how to interact with the Document Object Model (DOM) to modify the structure of the DOM tree for our convenience.
You should know that JavaScript is classless (prototype-oriented); however, we can emulate it using the prototype
object and other techniques. One of the major features of Ext JS is that since version 4, all the code in the framework was developed with a class-based structure. Along with naming conventions, it's easy to learn and understand, and keep the code organized, structured, and easy to maintain.
Knowing and understanding the concept of the Object-Oriented Programming System (OOPS) is very important. This book may not be a focused guide on the concept of OOPS, but you are going to learn how we can use and implement this concept in Ext JS.
The following are the main topics in this chapter, which you need to understand well before moving on to other parts of the library:
- The class system
- Loading classes on demand
- Working with the DOM
- 從零開始:數字圖像處理的編程基礎與應用
- WebAssembly實戰
- Three.js開發指南:基于WebGL和HTML5在網頁上渲染3D圖形和動畫(原書第3版)
- 假如C語言是我發明的:講給孩子聽的大師編程課
- Bootstrap Essentials
- 學習正則表達式
- 數據結構習題解析與實驗指導
- Teaching with Google Classroom
- 微服務架構深度解析:原理、實踐與進階
- C語言從入門到精通
- .NET 4.5 Parallel Extensions Cookbook
- PHP 7從零基礎到項目實戰
- Everyday Data Structures
- Mastering Apache Storm
- Get Your Hands Dirty on Clean Architecture