Re: creating dynamic text in web page

2008-03-28 Thread Gerolf Seitz
"');"; > > add(new StringHeaderContributor(js)); > > } > > } > > > > (of course the tidier version would be just to write out the variables, > and > > have the js fn static on the page, but same deal) > > > >

Re: creating dynamic text in web page

2008-03-28 Thread Martijn Dashorst
t; } > } > > (of course the tidier version would be just to write out the variables, and > have the js fn static on the page, but same deal) > > Thx > Joel > > > > -- > From: "Joel Halbert"

Re: creating dynamic text in web page

2008-03-28 Thread Joel Halbert
add(new StringHeaderContributor(js)); } } (of course the tidier version would be just to write out the variables, and have the js fn static on the page, but same deal) Thx Joel -- From: "Joel Halbert" <[EMAIL PROTECTED]&

creating dynamic text in web page

2008-03-28 Thread Joel Halbert
Hi All, I would like to be able to insert text dynamically in a wicket web page. An example would be where the arguments for a JavaScript function need to by dynamic: For example if I have something like this in my web page: MyJavascriptObject.callMethod( ${sessionKey}, '${uniqueUsername}');