Re: Call JS method after Ajax Load

2015-04-04 Thread Sebastien
Hi Chris, I am not sure to have the global picture of your usecase. But if you mean that you should run the script #onSelect (instead of the click), then you cannot use #updateAjaxAttributes in this case. But you can use target.prependJavaScript(...) so the javascript will be executed before the e

Wicket JQuery Ajax Slider

2015-04-04 Thread Chris
Hi all, I would like to run the example http://www.7thweb.net/wicket-jquery-ui/slider/AjaxSliderPage , however, the slider bar is not shown (only the value). Which css/js file might I be missing? Thanks, Chris

Re: Call JS method after Ajax Load

2015-04-04 Thread Chris
Hi Sebastian, thanks a lot - this helped! Chris > Am 04.04.2015 um 10:44 schrieb Sebastien : > > e

Re: Wicket JQuery Ajax Slider

2015-04-04 Thread Sebastien
Hi Chris, The slider does not need any additional dependency... First question: are you using a wicket-jquery-ui-theme dependency or a custom one? In case of the second option, this might a version issue, even if it's supposed to be backward compatible... They released a new version some days ago

Re: Wicket JQuery Ajax Slider

2015-04-04 Thread Chris
Hi Sebastian, I downloaded the version 1.11.4 (using theme ‚start’) and included following files: - jquery-ui.css - jquery-ui.js - jquery-ui.theme.min.css The table seems not to get converted in a bar, it is not visible. Should I switch to 1.10.4? Chris > Am 04.04.2015 um 19:01 schrieb Sebas

Re: Wicket JQuery Ajax Slider

2015-04-04 Thread Sebastien
Hi Chris, I think it might be a version issue. wicket-jquery-ui is still based on 1.11.2 (seems I've missed 1.11.3 in February btw, strange) If you are using a standard theme, maybe you don't have to download/use jquery* file, you can just use a theme dependency, so the css file will be rendered

Re: Wicket JQuery Ajax Slider

2015-04-04 Thread Chris
Hi Sebastian, jquery-ui.css and jquery-ui.js based on version 1.11.2 are included. Shouldn’t be there more css classes to render the bar? The output renders as follows:

Re: Wicket JQuery Ajax Slider

2015-04-04 Thread Sebastien
Hi Chris, > Shouldn’t be there more css classes to render the bar? Yes, actually css classes are not in the output... Could you try to reproduce this in a quickstart? (putting it somewhere in github or posting it in the Wicket jQuery UI forum) http://groups.google.com/group/wicket-jquery-ui/ Tha

Re: Wicket JQuery Ajax Slider

2015-04-04 Thread Chris
Hi Sebastian, thank you for your valuable support, it works. I forgot that I had set a Javascript Header Response Decorator in WicketApplication. Is it possible to „deactivate“ this for certain pages so that the JS are loaded from html > head? Thanks, Chris > Am 04.04.2015 um 21:11 schrieb S

Javascript link to Wicket Page

2015-04-04 Thread Chris
Hi all, I have a Javascript, that shows a footer with text & link on the bottom of a Web page for some seconds. Currently, it is loaded via response.render(OnDomReadyHeaderItem.forScript(...)); How can I call a Wicket Webpage from the link of the footer? Thanks, Chris -