Unknown runtime error number: -2146827687
Posted
by Simone Vellei
on Stack Overflow
See other posts from Stack Overflow
or by Simone Vellei
Published on 2010-04-15T10:03:43Z
Indexed on
2010/04/15
10:13 UTC
Read the original article
Hit count: 633
I have an error in my GXT code on Internet Explorer (both Development Mode and not) when i try to attach a label to a panel. The error is "Unknown runtime error number: -2146827687" but this error in a GWT module is throws always, in other gwt modules with a label attached to the panel the error there isn't.
The layout of panel is a GridFormLayout developed by me. The error is thrown when the renderComponentInCell is called (the method is called on doLayout) and the component is not rendered (else condition).
private void renderComponentInCell(Component component, Element cell) {
if (component.isRendered()) {
cell.appendChild(component.getElement());
} else {
component.render(cell);
}
}
What can I do?
© Stack Overflow or respective owner