如何使用zk hbox数组?
我不知道如何使用 zk Hbox 数组。我正在尝试创建 ZK Hbox 组件数组并在 for 块中使用它。
void createRow(Component container, final Node fieldNode, FieldCreator [] fieldDescription) {
final Vbox fieldsRows = new Vbox();
final Hbox fieldsRow = new Hbox();
final Hbox[] fieldBox;
int i=0;
for (FieldCreator fieldDesc : fieldDescription) {
fieldBox[i] = new Hbox();
fieldDesc.createField(fieldNode, fieldBox[i]);
i++;
}
fieldsRow.appendChild(fieldBox[]);
Button removeFieldButton = new Button(Messages.getString("MXFC_removeFieldButton")); //$NON-NLS-1$
fieldsRow.appendChild(removeFieldButton);
fieldsRows.appendChild(fieldsRow);
removeFieldButton.addEventListener(Events.ON_CLICK, new EventListener() {
public void onEvent(Event event) throws Exception {
fieldNode.getParentNode().removeChild(fieldNode);
fieldBox[].setParent(null);
}
});
container.appendChild(fieldsRows);
}
上面的代码不正确。编译器抛出错误:“标记“[”上的语法错误,此标记后需要表达式。”在线:
fieldsRow.appendChild(fieldBox[]);
fieldBox[].setParent(null);
我该如何解决这个问题?
谢谢, 索尼
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
索尼,
您的 java 代码中有一些语法错误。
为了解决这些问题,我们必须了解您想要在这段代码中实现什么目标。根据我的猜测,您应该
初始化fieldBox。
在追加/分离行的子项时遍历列。
Sony,
There are a few syntax errors in your java code.
To fix these problems we have to understand what you want to achieve in this piece of code. Based on my guess, you should
initialize fieldBox.
iterate through columns as you append/detach children of the row.