Ext6.0文档教学

所属分类:其他
开发工具:JavaScript
文件大小:28042KB
下载次数:0
上传日期:2020-11-30 10:36:11
上 传 者小明167
说明:  ext6.0文档教学,入门级教程,介绍里面的组件
(Ext6.0 document teaching, introduction to the components)

文件列表:
Nms\.sencha\app\app.defaults.json (15293, 2015-08-04)
Nms\.sencha\app\Boot.js (52523, 2015-08-04)
Nms\.sencha\app\bootstrap-impl.xml (3217, 2015-08-04)
Nms\.sencha\app\build-impl.xml (19324, 2015-08-04)
Nms\.sencha\app\build.properties (732, 2015-08-04)
Nms\.sencha\app\codegen.json (10347, 2015-08-04)
Nms\.sencha\app\cordova-impl.xml (8437, 2015-08-04)
Nms\.sencha\app\cordova.defaults.properties (139, 2015-08-04)
Nms\.sencha\app\defaults.properties (27066, 2015-08-04)
Nms\.sencha\app\development.defaults.properties (1097, 2015-08-04)
Nms\.sencha\app\development.properties (470, 2015-08-04)
Nms\.sencha\app\ext.properties (1575, 2015-08-04)
Nms\.sencha\app\find-cmd-impl.xml (2238, 2015-08-04)
Nms\.sencha\app\init-impl.xml (15737, 2015-08-04)
Nms\.sencha\app\js-impl.xml (3987, 2015-08-04)
Nms\.sencha\app\Microloader.js (39871, 2015-08-04)
Nms\.sencha\app\native.defaults.properties (946, 2015-08-04)
Nms\.sencha\app\native.properties (459, 2015-08-04)
Nms\.sencha\app\package.defaults.properties (1017, 2015-08-04)
Nms\.sencha\app\package.properties (590, 2015-08-04)
Nms\.sencha\app\packager-impl.xml (769, 2015-08-04)
Nms\.sencha\app\page-impl.xml (12605, 2015-08-04)
Nms\.sencha\app\phonegap-impl.xml (10459, 2015-08-04)
Nms\.sencha\app\phonegap.defaults.properties (562, 2015-08-04)
Nms\.sencha\app\plugin.xml (1413, 2015-08-04)
Nms\.sencha\app\production.defaults.properties (1007, 2015-08-04)
Nms\.sencha\app\production.properties (471, 2015-08-04)
Nms\.sencha\app\refresh-impl.xml (5030, 2015-08-04)
Nms\.sencha\app\resolve-impl.xml (3042, 2015-08-04)
Nms\.sencha\app\resources-impl.xml (1048, 2015-08-04)
Nms\.sencha\app\sass-impl.xml (11738, 2015-08-04)
Nms\.sencha\app\sencha.cfg (408, 2015-08-04)
Nms\.sencha\app\slice-impl.xml (15811, 2015-08-04)
Nms\.sencha\app\testing.defaults.properties (832, 2015-08-04)
Nms\.sencha\app\testing.properties (462, 2015-08-04)
Nms\.sencha\app\watch-impl.xml (2660, 2015-08-04)
Nms\.sencha\workspace\plugin.xml (473, 2015-08-04)
Nms\.sencha\workspace\sencha.cfg (1572, 2015-08-04)
Nms\app\Application.js (776, 2015-08-05)
... ...

# Nms This folder is primarily a container for the top-level pieces of the application. While you can remove some files and folders that this application does not use, be sure to read below before deciding what can be deleted and what needs to be kept in source control. The following files are all needed to build and load the application. - `"app.json"` - The application descriptor which controls how the application is built and loaded. - `"app.js"` - The file that launches the application. This is primarily used to launch an instance of the `MyApp.Application` class. - `"index.html"` - The default web page for this application. This can be customized in `"app.json"`. - `"build.xml"` - The entry point for Sencha Cmd to access the generated build script. This file is a place where you can hook into these processes and tune them. See the comments in that file for more information. - `".sencha"` - This (typically hidden) folder contains the generated build scripts and configuration files for the application. This folder is required in order to build the application but its content should not need to be edited in most cases. The content of this folder is updated by "sencha app upgrade". These files can be ignored from source control as they are regenerated by the build process. - `"build"` - This folder contain the output of the build. The generated CSS file, consolidated resources and concatenated JavaScript file are all stored in this folder. - `"bootstrap.*"` - These files are generated by the build and watch commands to enable the application to load in "development mode". # Other Folders ## Basic Application Structure Applications that target a single toolkit will have the following structure. app/ # Contains JavaScript code model/ # Data model classes view/ # Views as well as ViewModels and ViewControllers store/ # Data stores controller/ # Global / application-level controllers overrides/ # JavaScript code that is automatically required sass/ etc/ # Misc Sass code (all.scss is imported by default) var/ # Sass variable and mixin declarations src/ # Sass rules resources/ # Assets such as images, fonts, etc. See the [Sass readme](sass/Readme.md) for details on the "sass" folder. ## Universal Applications In a Universal Application, the basic application structure above is retained but only holds code, resources, etc. pieces that are used in both classic and modern build profiles. The following additional directories are used to isolate code and other files that are toolkit-specific: classic/ # Content specific to the classic toolkit src/ model/ # Data model classes view/ # Views as well as ViewModels and ViewControllers store/ # Data stores controller/ # Global / application-level controllers overrides/ # JavaScript code that is automatically required sass/ etc/ # Misc Sass code (all.scss is imported by default) var/ # Sass variable and mixin declarations src/ # Sass rules resources/ # Assets such as images, fonts, etc. modern/ # Content specific to the modern toolkit src/ model/ # Data model classes view/ # Views as well as ViewModels and ViewControllers store/ # Data stores controller/ # Global / application-level controllers overrides/ # JavaScript code that is automatically required sass/ etc/ # Misc Sass code (all.scss is imported by default) var/ # Sass variable and mixin declarations src/ # Sass rules resources/ # Assets such as images, fonts, etc. ## Overrides The contents of "overrides" folders are automatically required and included in builds. These should not be explicitly mentioned in "requires" or "uses" in code. This area is intended for overrides like these: Ext.define('Nms.overrides.foo.Bar', { override: 'Ext.foo.Bar', ... }); Such overrides, while automatically required, will only be included if their target class ("Ext.foo.Bar" in this case) is also required. This simplifies applying patches or extensions to other classes.

近期下载者

相关文件


收藏者