0
使用Ext.Toolbar ExtJS的蔭設計菜單,ExtJS的工具欄按鈕的HIGHlite
var ToolBar = new Ext.Toolbar({
id: 'ToolBar',
renderTo: 'divtoolbar',
items: [
{ xtype: 'spacer', width: 50 },
{ xtype: 'tbbutton', text: 'Home', handler: function() { window.location = '@Url.Content("~/Home/Home/")'; } },
{ xtype: 'tbseparator' },
{ xtype: 'tbbutton', text: 'Calendar', handler: function() { window.location = '@Url.Content("~/calendar/eventCalendar/")'; } },
{ xtype: 'tbseparator' },
{ xtype: 'tbbutton', text: 'Locations' }
]
............ 如何改變或點擊的HIGHlite TBBUTTON在
感謝提前
感謝您的回覆,,,,,,,,,請給我一個singlepage approch的例子.......謝謝 – MNR 2011-04-28 11:19:55
單頁方式,你不會導航到一個新的頁面。相反,你在同一頁面打開一個窗口,面板等。查看ExtJS示例中提供的「組合示例」。 – 2011-04-28 11:29:10