如何在 Extjs 的卡片布局上获取当前活动项目的索引号(而不是活动项目的 id)?
如何获取卡片布局上当前活动项目的索引号(而不是活动项目的 ID)? 以下代码将返回活动项目的 id:
Ext.getCmp('my-wizard').getLayout().activeItem.id];
如果我不想为组件项目定义 id 而只想访问活动项目的索引号,该怎么办?
How do I get the currently active item's index number (and not active item's id) on a card layout?
The following code will return active item's id:
Ext.getCmp('my-wizard').getLayout().activeItem.id];
What if I don't want to define an id for my component items and I just want to access active item's index number?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找不到内置的快速简便的方法,但以下方法可行:
如果这是您经常想做的事情,您可以将其添加到
CardLayout
原型中:然后您可以使用它:
I couldn't find a built-in quick and easy way, but the following would work:
If this was something that you wanted to do often, you could add it to the
CardLayout
prototype:Then you could use it with: