我正在尝试将GWT中的小部件附加到元素。我看到这个例子, How to add a custom widget to an element
但是当我使用HTMLPanel.wrap()时,我得到了一个UmbrellaException。例外情况发生在这条线上:
断言Document.get()。getBody()。isOrHasChild(element);
如何将我的元素附加到DOM?以下是我正在使用的代码:
@UiField
TableElement tblBootstrap;
public void addRow() {
TableRowElement row = tblBootstrap.insertRow(-1);
TableCellElement c = row.insertCell(-1);
HTMLPanel.wrap(c).add(new TextBox());
}
非常感谢,
埃里克