icefeeling的家园

生活就是一本书,需要我们用心去读

 

2008年12月11日

Ext-tree

摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 练习使用Ext-tree 阅读全文

posted @ 2008-12-11 20:23 lzb 阅读(2266) 评论(2) 推荐(2) 编辑

2008年12月10日

Ext-Grid-HttpProxy-分页

摘要: 1、客户端代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 练习使用Ext-form-grid /default/styles.css" rel="stylesheet"> /default/styles.css" rel="... 阅读全文

posted @ 2008-12-10 20:38 lzb 阅读(1284) 评论(0) 推荐(0) 编辑

2008年12月8日

JAVASCRIPT-全面理解javascript的Arguments,caller,callee,call,apply

摘要: Arguments是进行函数调用时,除了指定的参数外,还另外创建的一个隐藏对象。Arguments是一个类似数组但不是数组的对象,说它类似数组是因为其具有数组一样的访问性质及方式,可以由arguments[n]来访问对应的单个参数的值,并拥有数组长度属性length。 在提到上述的概念之前,首先想说说javascript中函数的隐含参数:arguments 程序代码 Arguments... 阅读全文

posted @ 2008-12-08 20:19 lzb 阅读(239) 评论(0) 推荐(0) 编辑

JAVASCRIPT-继承

摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->//无限对象的继承 function apply(){ var l=arguments.length; if(l2){ //多于两个 apply(arguments[0],ar... 阅读全文

posted @ 2008-12-08 20:07 lzb 阅读(183) 评论(0) 推荐(0) 编辑

2008年12月1日

Core/Ext.js 转自JS堂

摘要: 从Library的角度去看,Ext和Prototype JQuery YUI没有太大区别,但它有它的优点,完整的OO支持、成熟的通用widgets并支持主题、良好的扩展性、快速的更新发布新的widgates、社区也很热闹。最重要的是我个人比较喜欢它。 首先打开源代码看一下它的结构: ext从core开始看吧 Ext = {version: '2.0-beta1'}; 这一行代码是定义一个变量E... 阅读全文

posted @ 2008-12-01 22:27 lzb 阅读(383) 评论(1) 推荐(0) 编辑

Core/Ext.extend 从继承说起 转自JS堂

摘要: 一般的,如果我们定义一个类,会定义一个function对象,然后将公用方法写到其原型上,例如: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->var Tiger = function(){} Tiger.prototype.Hunting = fun... 阅读全文

posted @ 2008-12-01 22:15 lzb 阅读(292) 评论(0) 推荐(0) 编辑

2008年11月25日

What is the basic thing to keep in mind about forms

摘要: What is the basic thing to keep in mind about forms? A BasicForm is not a layout managing Container. It exists solely to manage a collection of Ext.form.Field objects. Those Fields need to be ren... 阅读全文

posted @ 2008-11-25 21:51 lzb 阅读(88) 评论(0) 推荐(0) 编辑

2008年11月19日

修改Eclipse文本文件默认编码

摘要: 工作空间范围: Window->Preferences->General->Workspace->Text file encoding->Other->UTF-8 项目范围: Project->Properties->Resource->Text file encoding->Other->UTF-8 文件范围: Properties->Text file encoding->Other->UT... 阅读全文

posted @ 2008-11-19 21:23 lzb 阅读(319) 评论(0) 推荐(0) 编辑

Javascript 原型和继承(Prototypes and Inheritance)

摘要: 前面我们看到了如何使用 constructor 来初始化对象。如果这样做,那么每一个创建的新对象都会对那些相同的属性,方法建立一个独立的副本。而实际上有更加有效的方法来指定方法,常量,以及其他一些可被所有该类的对象共享的属性。 JavaScript 对象从一个原形对象(prototype object) 继承属性。所有对象都有原型;原型的所有属性看上去就像使用它作为原型的那些对象的属性一样。简单... 阅读全文

posted @ 2008-11-19 21:16 lzb 阅读(205) 评论(0) 推荐(0) 编辑

Ext-Xml-Grid-汉化、加载

摘要: 1、步骤 1.1 步骤一 定义数据(Data Definition) 单行的XML样本数据 1.2步骤二 列模型(Column Model) 列模型样本 进行渲染! 2、注意 2.1 因为这些数据是异步加载的,所以必须放在服务器上,进行浏览;如果没有放在服务器上,这些数据是不能进行加载的 . 2.2 出现了“ext-lang-zh_CN.js 未结束的字符串... 阅读全文

posted @ 2008-11-19 21:11 lzb 阅读(581) 评论(0) 推荐(0) 编辑

导航