如何从 Java 表单中删除 FieldSet?

发布于 2024-10-03 16:37:42 字数 480 浏览 6 评论 0原文

我在表单中有一个 FieldSet 对象,但由于某种原因我无法删除它。它显示“无法将 FieldSet 的表单设置为 null”。 我的代码是这样的。

Form form = new Form("form");
FieldSet fsTest = new FieldSet("fsTest", "");

//constructor
public ClassName(){

fsTest.add(new Submit("clear", "Clear Fields", this, "onCleanButtor");
form.add(fsTest);
}

private boolean onClearButton(){
form.remove(fsTest);
}

因此,当我单击“清除字段”按钮时,它显示“无法将 FieldSet 的表单设置为 null” 如何从 Form 中删除 FieldSet?

I have a FieldSet object in a form, but for some reason i can't remove it. It says "Cannot set the FieldSet's form to null".
My code is something like this.

Form form = new Form("form");
FieldSet fsTest = new FieldSet("fsTest", "");

//constructor
public ClassName(){

fsTest.add(new Submit("clear", "Clear Fields", this, "onCleanButtor");
form.add(fsTest);
}

private boolean onClearButton(){
form.remove(fsTest);
}

So, when I click on the button Clear Fields, it says "Cannot set the FieldSet's form to null"
How can I remove the FieldSet from Form?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾城花音 2024-10-10 16:37:42

我终于可以做到了。
我没有找到从表单中删除 fieldSet 的方法,取而代之的是,我在表单上添加了 fieldset,但没有任何东西
当我需要时,我添加了一些东西,当我单击清除按钮时,我从字段集中删除了一些东西,并且从表单中删除了任何内容

I finally could do it.
I didn't find a way to remove a fieldSet from a form, instead of it, i added the fieldset on form without a thing
when i needed i added stuff, and when i clicked on clear button, i removed stuff from fieldset, and nothing from the form

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文