首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

简略的EXT面板工具栏

2012-11-05 
简单的EXT面板工具栏??? ?script??Ext.onReady(function() {???new Ext.Panel({?????renderTo:hello,?

简单的EXT面板工具栏


??? ?<script>
??Ext.onReady(function() {
???new Ext.Panel({
?????renderTo:"hello",
?????title:"面板头部header",
?????width:300,
?????height:200,
?????html:'<h1>面板区域</h1>',
?????tools:[{id:"save"},
?????{id:"help",handler:function(){
??????Ext.Msg.alert('help','please help me');}
?????},
?????{id:"close"}
?????],
?????tbar:[new Ext.Toolbar.TextItem('工具栏'),
??????{xtype:"tbfill"},
??????{pressed:true,text:"添加"},
??????{xtype:"tbseparator"},
??????{pressed:true,text:'保存'}
?????],
?????bbar:[{text:'底部'}],
?????buttons:[{text:"按钮"}]
????});
??}
??);
?</script>
?
?<div id="hello">aaa</div>

热点排行