
ExtJs
文章平均质量分 80
舒克frz
这个作者很懒,什么都没留下…
展开
-
Extjs控件学习(一)--Ext.Component
Ext.Componet是所有Ext组件的基类,它的所有子类都自动享有了标准的Ext组件的生命同期,包括创建,渲染和销毁。组件可以在容器组件在创建时通过容器组件的项目配置选项添加,或者用Add方法动态添加。组件基类创建后自动支持显示/隐藏、启用/禁用和大小控制行操作。所有的组件都注册到Ext.ComponentMgr结构中,所以他们可以在任何时间通过Ext.getCmp()方法根据id引用翻译 2011-12-04 17:04:34 · 785 阅读 · 0 评论 -
Extjs4 API文档阅读(一)——类系统(Class System)
类系统ext4使用新的类机制进行了大量的重构。这在ext的历史上还是第一次为了支撑新的架构,ext4几乎重写了每一个类。因此最好先好好的理解一下新的架构,再开始编码。本文适合想在extjs4中扩展现有类或者创建新类的开发者。共分为4个部分:第一部分:概述,说明了强大的类机制的必要性.第二部分:编码规范,讨论类、方法、属性、变量和文件命名的最佳实践.第三部分:动手转载 2011-12-21 02:50:10 · 684 阅读 · 0 评论 -
Extjs4组件学习--Ext.grid.Panel
Ext.grid.Panelxtype:gridpanel,gridGrids are an excellent way of showing large amounts of tabular data on the client side. Essentially a supercharged , GridPanel makes it easy to fetch, sort and filt原创 2018-05-14 17:14:03 · 2037 阅读 · 1 评论 -
Ext JS 4 入门指南--The Data Package(数据包)
Data(数据)The data package is what loads and saves all of the data in your application and consists of 41 classes, but there are three that are more important than all the others - Model, Store and Ex翻译 2012-01-01 13:34:03 · 1383 阅读 · 0 评论