Hi is there a way to put both a linksubmit and a submit component on a page?
when i press the linksubmit it fails at the javascript with the line this.form.submit(); onClick : function(event)7828 { 7829 // Tapestry.debug("LinkSubmit #{id} clicked.", this.element); 7830 7831 Event.stop(event); 7832 7833 var onsubmit = this.form.onsubmit; 7834 7835 if (onsubmit == undefined || onsubmit.call(window.document, event)) 7836 { 7837 this.createHidden(); 7838 this.form.submit(); 7839 } 7840 7841 return false; 7842 } 7843}); thanx, Rolf Strijdhorst