基本表单内的 Extjs 复选框
我在窗口内有一个基本表单。该表单有几个复选框,我需要一些如何能够使用另一个复选框选择所有复选框。我应该如何访问这些复选框类型。我试图获取对“this”的引用,然后引用 this.getForm().getFieldValues() 但有更好的方法来做到这一点,因为我只需要获取复选框而不是其他字段。
谢谢, SS
I have a basic form inside a window. This form has several check boxes and I need to some how be able to select all with another checkbox. How am I supposed to access these checkbox types. I am trying to get reference to "this" and then this.getForm().getFieldValues() but is there a better way to do it, as I only need to get the checkboxes and not other fields.
Thanks,
SS
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,ExtJs 字段没有 getForm() 方法来访问其父级。但是,您可以使用此覆盖来添加此内容方法。获得表单后,您可以访问您喜欢的任何字段,这应该可以让您执行您所描述的操作。
By default ExtJs fields don't have a getForm() method to get access to their parent. However, you can use this override to add this method. Once you've got the form, you can get access to any field you like, which should let you do what you describe.