EXTJS OnClick 选项卡事件
有没有办法将 OnClick 事件附加到 EXTJS 中的选项卡开关?
我把网格做成这样:
var simple = new Ext.FormPanel({ 标签宽度: '100%', 边框:假, 宽度:'100%', 风格: { 高度:'291px' }, 项目: { xtype: '标签面板', 活动选项卡:0, //labelWidth: 75, // 这里的标签设置级联,除非被覆盖 项目:[{ url:'保存表单.php', 标题:“选项卡 1”, ...
谢谢!
Is there a way to attach an OnClick event to a tab switch in EXTJS?
I make the grid like this:
var simple = new Ext.FormPanel({ labelWidth: '100%', border:false, width: '100%', style: { height: '291px' }, items: { xtype: 'tabpanel', activeTab: 0, //labelWidth: 75, // label settings here cascade unless overridden items:[{ url:'save-form.php', title: 'Tab 1', ...
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在定义选项卡后,我添加了一个侦听器,如下所示:
这仅在选项卡更改时发出警报,这足以满足我的目的。我不确定如何找出哪个选项卡是当前选项卡。
希望这对将来的人有帮助。
I added in a listener after the tabs were defined like this:
This just alerts when the tab changed, which is sufficient for my purposes. I'm not sure though how to find out which tab is the current tab.
Hope this helps someone in the future.
当活动选项卡更改时,会触发
tabchange
事件:http://www .sencha.com/learn/Ext_FAQ_TabPanelThere is a
tabchange
event that fires when the active tab changes: http://www.sencha.com/learn/Ext_FAQ_TabPanel