Re: Output just text, no component

2010-07-15 Thread Ted Vinke

 Darn, that's it! Thanks a lot!

Regards, Ted

Op 14-7-2010 16:04, James Carman schreef:

You can use a org.apache.wicket.util.template.JavaScriptTemplate.

On Wed, Jul 14, 2010 at 9:51 AM, Ted Vinketvi...@first8.nl  wrote:

  Hi everybody!

I'm trying to accomplish something new with Wicket: output just some text,
instead of a component. I simply can't figure out how to dynamically render
from my backing Java class $XAML_FILENAME below (which is the suggested
snippet to embed JW Player).

div name=/mediaspace/ id=/mediaspace//div

script type=/text/javascript/

*var* cnt = document.getElementById(mediaspace);

*var* src = '$XAML_FILENAME';

*var* cfg = {

file:'video.wmv',

height:'240',

width:'440'

};

*var* ply = *new* jeroenwijering.Player(cnt,src,cfg);

/script


I've tried to put a SPAN where the $XAML_FILENAME is and add a Label with
setRenderBodyOnly(*true*) but that's for obvious reasons invalid HTML :)

Any hints are greatly appreciated!

Kind regards, Ted


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org





-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Output just text, no component

2010-07-14 Thread James Carman
You can use a org.apache.wicket.util.template.JavaScriptTemplate.

On Wed, Jul 14, 2010 at 9:51 AM, Ted Vinke tvi...@first8.nl wrote:
  Hi everybody!

 I'm trying to accomplish something new with Wicket: output just some text,
 instead of a component. I simply can't figure out how to dynamically render
 from my backing Java class $XAML_FILENAME below (which is the suggested
 snippet to embed JW Player).

 div name=/mediaspace/ id=/mediaspace//div

 script type=/text/javascript/

 *var* cnt = document.getElementById(mediaspace);

 *var* src = '$XAML_FILENAME';

 *var* cfg = {

 file:'video.wmv',

 height:'240',

 width:'440'

 };

 *var* ply = *new* jeroenwijering.Player(cnt,src,cfg);

 /script


 I've tried to put a SPAN where the $XAML_FILENAME is and add a Label with
 setRenderBodyOnly(*true*) but that's for obvious reasons invalid HTML :)

 Any hints are greatly appreciated!

 Kind regards, Ted


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org