Which says that an unknown runtime error was detected.
When debugging I can see, that the exception is thrown after Method com.extjs.gxt.ui.client.widget.Text#setText() was called when the component was rendered and so the member 'rendered' is true. Does anybody have an idea why I face this problem with IE? I mean why does this exception come up when trying to set inner html? Unfortunately I do not see any other error messages in IE.
Can you please post a fully working testcase implementing EntryPoint for this? This way we could debug it directly. Its kind of hard to say without seeing any code.
6) Add a text, not null, to the TextField
You mean setValue with this?
4) Add a second FormPanel 2 to the previously added FormPanel 1
This is not supported. IE cannot have a form tag within another form tag. Why do you want to use multiply FormPanel?
sorry my fault. I am using a Label not a text field and so label#setText(String).
Unfortunately I can not provide you a testcase. My Project is a try to integrate Gxt over Vaadin with an mvc based runtime which requires a bunch of libs. Sorry for that.
This is not supported. IE cannot have a form tag within another form tag. Why do you want to use multiply FormPanel?
Omg, you are right! Don't know why I forgot about this. The pages are generated depending on a tree of control objects. Using FormPanel as the default Panel was a bad choice. I will check, if this is the reason for my problem.