Conventions

In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.

Code words in text are shown as follows: "Inside the app/view folder, we remove all existing files (the initial skeleton), and proceed to create the initial view our application will have."

A block of code is set as follows:

Ext.define('myApp.model.modulesModel', { extend: 'Ext.data.Model', requires: [ 'Ext.data.field.String', 'Ext.data.field.Boolean', 'Ext.data.field.Integer' ], fields: [ {type: 'string', name: 'description'}, {type: 'boolean', name: 'allowaccess'}, {type: 'int', name: 'level'}, {type: 'string', name: 'moduleType', defaultValue: ''}, ...

Get Learning Ext JS - Fourth Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.