soweit ist es ja noch klar.
nur die teile dannach werfen mich vor das selbe problem wie am anfang.
gegenfrage:
wie bekomme ich vom [formobjekt] alle hinzugefügen objekte herraus?
zb mittels trial&error
Du weißt doch was du ihnen zugefügt hast?
Und das kannst du testen:
if(this.obj) this.obj.onsubmit();
Im zweifelsfall geht natürlich auf
[formobject].obj = new Array();
und dann:
[formobject].obj.push( deinObjekt);
und dann im formobjekt beim event:
for(var i = 0; i < this.obj.length; i++) this.obj[i].onsubmit();
Struppi.