Open GoogleCodeExporter opened 8 years ago
Any idea for workaround?
Original comment by ahmed.am...@gmail.com
on 22 Jul 2010 at 7:21
[deleted comment]
I have the same one when I attempt to setHTML on an Anchor object like that:
topExportLink.setHTML("<a href='" + urlLink + "'>" + commonsLabels.export() +
"</a>");
The same error appends if I replace the last line by this one :
topExportLink.setText(commonsLabels.export());
topExportLink.setHref(urlLink);
But I think it's not these lines which are the cause of the issue, because when
I'm debugging with eclipse, I have a TargetInvocationException with the Unknown
Runtime Error in cause.
The complete trace in attachment.
Original comment by logan.ha...@gmail.com
on 27 Jul 2010 at 3:22
Attachments:
I finally could avoid the error by extending FixedWidthGrid and setting the
clear text to empty string. The default clear text is " "
public MyFixedWidthGrid() {
super();
setClearText("");
}
Original comment by ahmed.am...@gmail.com
on 27 Jul 2010 at 7:08
Original issue reported on code.google.com by
ahmed.am...@gmail.com
on 8 Jul 2010 at 11:01