摘要: 1:简单工具栏演示Ext.onReady(function () { var tb = new Ext.Toolbar({ renderTo: 'id1', width:300 }); tb.add([ {text:'新建', handler:tbClick,iconCls:'newIcon'}, { text: '打开', handler: tbClick, iconCls: 'openIcon' }, ... 阅读全文
posted @ 2013-10-28 19:38 jessetang 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 1:手动模式进度条View Code 2:自动模式进度条 不能准确地反映程序的执行状态,而是给用户一个友好的提示,通常只需调用wait() Ext.onReady(function () { var pb = new Ext.ProgressBar({ text: '进行中。。。', width: 300, //applyTo: 'id1' renderTo: 'id1'//书上写的是applyTo,但是用了没有反应。。。 })... 阅读全文
posted @ 2013-10-28 17:24 jessetang 阅读(453) 评论(0) 推荐(0) 编辑