
Ext
diao21
这个作者很懒,什么都没留下…
展开
-
Ext.apply 详解
[code="java"]apply的用法: Ext中apply及applyIf方法的应用apply及applyIf方法都是用于实现把一个对象中的属性应用于另外一个对象中,相当于属性拷贝。不同的是apply将会覆盖目标对象中的属性,而applyIf只拷贝目标对象中没有而源对象中有的属性。apply方法的签名为“apply( Object obj, ...原创 2014-04-28 18:05:02 · 120 阅读 · 0 评论 -
构建一个Panel中的工具栏
[code="java"]Ext JS in Action Chapter 04 | Listing 4.1 Building toolbars for use in a Panel Ext.BLANK_IMAGE_URL = '/ext3/resources/images/default/s.gif';Ext.onReady(functi...原创 2014-04-29 16:06:00 · 192 阅读 · 0 评论 -
2.3_advanced_xtemplate_usage
[code="java"]Ext JS in Action Chapter 02 |Listing 2.3 Advanced XTemplate usage Ext.BLANK_IMAGE_URL = './ext3/resources/images/default/s.gif'; Ext.onReady(function() { /*...原创 2014-04-29 15:08:41 · 116 阅读 · 0 评论 -
ext之template3
[code="java"]Ext JS in Action Chapter 02 Ext.BLANK_IMAGE_URL = './ext3/resources/images/default/s.gif'; [/code][code="java"]Ext.onReady(function() { var tplDa...原创 2014-04-29 14:58:46 · 210 阅读 · 0 评论 -
ext之template2
[code="java"]Ext JS in Action Chapter 02 Ext.BLANK_IMAGE_URL = './ext3/resources/images/default/s.gif'; [/code][code="java"]Ext.onReady(function() { /** ...原创 2014-04-29 14:46:36 · 98 阅读 · 0 评论 -
ext之template
[code="java"]Ext JS in Action Chapter 02 Ext.BLANK_IMAGE_URL = './ext3/resources/images/default/s.gif'; [/code][code="java"]Ext.onReady(function() { var myTp...原创 2014-04-28 20:24:24 · 135 阅读 · 0 评论 -
ext之删除子节点
[code="java"]Ext JS in Action Chapter 02 .myDiv { border: 1px solid #AAAAAA; width:200px; height : 35px; cursor: pointer; padding: 2px 2px 2px 2px; } Ext.BLANK...原创 2014-04-28 20:19:59 · 362 阅读 · 0 评论 -
ext之创建子节点
[code="java"]Ext JS in Action Chapter 02 .myDiv { border: 1px solid #AAAAAA; width:200px; height : 35px; cursor: pointer; padding: 2px 2px 2px 2px; } Ext.BLANK...原创 2014-04-28 20:12:53 · 332 阅读 · 0 评论 -
ext之helloworld
[b]这是helloWorld.html[/b][code="java"]Ext JS in Action Chapter 01 | Hello World Window Ext.BLANK_IMAGE_URL = './ext3/resources/images/default/s.gif'; [/code][b]这是h...原创 2014-04-28 20:01:04 · 164 阅读 · 0 评论 -
form panel
[code="java"]Ext JS in Action Chapter 06 | Listing 6.4 Implementing a remote combobox Ext.onReady(function() {Ext.QuickTips.init();var remoteJsonStore = new Ext.data.JsonS...原创 2014-04-29 16:15:42 · 144 阅读 · 0 评论