Hi Björn
Concerning your second run (Add list entry to demo list I (doesn't work)):
I think the behavior you scripted is what it should be. The problem is, that you use the same 'in.demoListEntry' twice. You don't instatiate a new one before entering the new Dialog data. You should add something like:
DemoListEntry >DemoListEntry demoListEntry= new DemoListEntry();
demoListEntry.attribute1=
>demoListEntry.attribute1= "b";
demoListEntry.attribute2=
>demoListEntry.attribute2= "bb";
The same Problem should apply to you third run.