摘要:
var store=new Ext.data.Store({ url:"student.ejf?cmd=list", reader:new Ext.data.JsonReader({ root:"result"}, ["id","name","organization","homepage"]) }); 等同于 var store=new Ext.data.JsonStore({ url:"... 阅读全文
摘要:
C#生成JSON数据格式的函数 Posted on 2008-04-07 09:19 李海 阅读(325) 评论(0) 编辑 收藏 所属分类: Ext2.0学习 --> 使用说明: 对List 集合使用的方法: List objList = objAction.GetCODE_MByList(objTbl); string JsonSource = JS... 阅读全文
摘要:
Ext中apply及applyIf方法的应用 apply及applyIf方法都是用于实现把一个对象中的属性应用于另外一个对象中,相当于属性拷贝。不同的是apply将会覆盖目标对象中的属性,而applyIf只拷贝目标对象中没有而源对象中有的属性。 ... 阅读全文