HTML ext js 字段集
这是我第一次使用 ext js,我使用 ext js 设计器工具。 我创建了 3 个字段集,每个字段集具有不同的输入格式,但后端输入相同。 例如通过选择复选框进行搜索 或在完整数据中按类型搜索 或者在数据中输入关键字进行搜索
用户只会使用其中之一,并且有一个常见的提交。 我想要这样的东西: 如果一个字段集具有焦点,则其他字段集将被禁用并清除任何条目。 如何在 JavaScript 中并使用 ext js 来实现这个?
This is my first experience with ext js and I use ext js designer tool.
I have created 3 fieldsets each having different input format but the same input for backend.
E.g. search by selecting checkboxes
Or search by type in full data
Or search by type in keywords in data
The user would use only one of these and there is one common submit.
I want something like this:
If one fieldset has focus others are disabled and cleared of any entries.
How to implement this in JavaScript and using ext js?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先我必须说 Sencha API 文档 是你的朋友。目前尚不清楚您正在使用哪些字段,但所有字段都有您可以使用的事件,例如
change
、focus
等等。您还应该查看 Sencha ExtJS 示例 和 学习资源如果您仍然无法让它工作,请发布代码到目前为止您已尝试过的操作,您将获得进一步的帮助。
First I have to say Sencha API Docs are your friend. It's not clear which fields you are using but all fields have events that you can use for that like
change
,focus
, and many more. You should also take a look at the Sencha ExtJS Examples and the Learning-ResourcesIf you still don't get it to work post the code what you have tried so far and you will get further help.