Re: [Wicket-user] Javascript Error using submit link in 1.3 that didn't happen in 1.2.5

2007-06-17 Thread Al Maw
oliver.henlich wrote: > I'm still having this problem on 1.3 snapshot. > > Interesting point about the markup (html id attribute). My markup looks like > this: > > > > And the generated javascript looks like this: > > [a onclick="var e=document.getElementById('formTransaction_hf_0'); > e.name=

Re: [Wicket-user] Javascript Error using submit link in 1.3 that didn't happen in 1.2.5

2007-06-17 Thread oliver.henlich
I'm still having this problem on 1.3 snapshot. Interesting point about the markup (html id attribute). My markup looks like this: And the generated javascript looks like this: [a onclick="var e=document.getElementById('formTransaction_hf_0'); e.name='linkAddEntry'; e.value='x';var f=document.

Re: [Wicket-user] Javascript Error using submit link in 1.3 that didn't happen in 1.2.5

2007-04-12 Thread Johan Compagner
i think it is the id="form1" that is the trigger here. what was the resulting output in 1.2 and 1.3? because i know we tried to get the form by id for submit links. johan On 4/12/07, Andrew Moore <[EMAIL PROTECTED]> wrote: Just an update, if I change the line in the html to then it works o

Re: [Wicket-user] Javascript Error using submit link in 1.3 that didn't happen in 1.2.5

2007-04-12 Thread Andrew Moore
Just an update, if I change the line in the html to then it works ok. The extra details I think were put in there by dreamweaver by the designed. All I had done it added the wicket:id attribute. Andrew Moore wrote: > > Hi, > I seem to be getting a javascript error whenever I try to click on

[Wicket-user] Javascript Error using submit link in 1.3 that didn't happen in 1.2.5

2007-04-12 Thread Andrew Moore
Hi, I seem to be getting a javascript error whenever I try to click on a submitLink. For example: The html markup I'm using is: add more text label Adding the component to the page is done via: Form form = new Form("homepageForm", new CompoundPropertyModel(homePageVO));