Re: PrototipBehaviour problems

2009-01-14 Thread rjohara
1.4-SNAPSHOT Has anyone recently added this dependency successfully? Any help is appreciated. Thanks, Ryan -- View this message in context: http://www.nabble.com/PrototipBehaviour-problems-tp21424534p21463033.html Sent from the Wicket - User mailing list archive

Re: PrototipBehaviour problems

2009-01-12 Thread Vit Rozkovec
You must include its javascript libraries: add(ScriptaculousAjaxBehavior.newJavascriptBindingBehavior()); you need to have a scriptaculous dependency in your project's pom.xml Vitek Ryan O'Hara wrote: I'm trying to use PrototipBehaviour. Below is my code: Link detailsLink = new Link("Sample"

PrototipBehaviour problems

2009-01-12 Thread Ryan O'Hara
I'm trying to use PrototipBehaviour. Below is my code: Link detailsLink = new Link("Sample", new Model(sample)); Label label = new Label("sampleid", sample); detailsLink.add(label); PrototipBehaviour pb = new PrototipBehaviour("hallelujah!!"); label.add(pb); add(detailsLink); And below is the s