can you not just use a label whose model is the "<script>...</script>" string?
-igor On Sat, Oct 10, 2009 at 5:34 AM, Paul Huang <paulhuan...@gmail.com> wrote: > Suppose I write my own wicket component called XYZ that have the following > markup > > <wicket:panel> > <div wicket:id="id_xxx"> > .... > </div> > </wicket:panel> > > How can I inject some js code into this markup so when it's rendered in a > page, I got something like > > <wicket:panel> > <div wicket:id="id_xxx"> > <script type="text/javascript"> > var data=["abc", "efg"]; > document.write(data[0]); > </script> > ..... > <div> > <wicket:panel> > > You may ask why I dont simply keep the js code into the component markup > "XYZ.html", this is because the value of "data" variable will be provided by > the user and is not fixed. > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org