Sencha 显示/隐藏元素
我有一个简单的表单,并且使用一个带有处理程序的按钮来获取提交。当用户单击该按钮时,我想显示一个“DIV”元素。
如何在 Sencha 中显示/隐藏特定元素?
提前致谢!
I have a simple form, and I work with a button that has a handler to get the submit. When the user clicks that button, I want to show a 'DIV'-element.
How is it possible to show / hide a specific element in Sencha?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
显示组件:
隐藏组件:
在此之前,您当然必须使用 YourDivID 创建一个组件。
To show a component:
To hide a component:
Before this, you have to of course create a component with YourDivID.
您必须使用 getCmp 才能选择元素,
但必须使用 Ext.select() 才能选择 HTML 元素(例如 div)。
用法示例:
You have to use getCmp in order to select an element,
but you have to use
Ext.select()
in order to select an HTML element like divs.Example usage: