Re: ListPanel - update model

2015-02-15 Thread Francois Meillet
Hi Chris, The ListModel keeps a reference on the model created at the first occurence of that line pModel = new ListModelP(someService.caculate()); The simplest thing you could do is to reset the listpanel's model, but this is not a good practice. listPanel.setDefaultModel(model); add(new

Re: ListPanel - update model

2015-02-15 Thread Martin Grigorov
Hi, On Feb 14, 2015 11:24 PM, Chris chris...@gmx.at wrote: Hi all, I would like to update a list model when the user clicks on a certain link. However, when the listPanel is rendered after clicking on the link, the model seems not to be updated and still contains the old values. How to fix

Re: Wicket WebRTC Integration

2015-02-15 Thread Tobias Soloschenko
Hi, I just added a way to apply a poster to the local / remote videos that is going to be shown if a user does not allow camera access or simply does not have any camera. There is a default poster but you can override getNoVideoResourceReference and apply your own. The API changed a little

Re: New committer - Sebastien Briquet

2015-02-15 Thread Sebastien
Thanks a lot everyone! :) @Cedric, yes with a great pleasure! On Sat, Feb 14, 2015 at 3:51 PM, Cedric Gatay gata...@gmail.com wrote: Congrats' Sebastien, looking forward to meeting you in an event in France ;) __ Cedric Gatay (@Cedric_Gatay http://twitter.com/Cedric_Gatay)

Re: [ANNOUNCE] WicketStuff 7.0.0-M5 is released

2015-02-15 Thread Martin Grigorov
Because the examples archive is .war, not .jar On Feb 15, 2015 12:57 PM, Wicket und Cocoon hansheinrichbr...@yahoo.de wrote: I don't know what has changed i always get the error Failed to execute goal on project myproject: Could not resolve dependencies for project

Question regarding index handling with RefreshingView and OddEvenItem

2015-02-15 Thread Thorsten Schöning
Hi all, I'm using DataView to publish some search results in a HTML table and what the results to format zebra style. I've found OddEvenItem for that purpose but ran into what I find is a problem: The first item is always rendered with CSS class even, because the index used is 0 based. That may

Re: ListPanel - update model

2015-02-15 Thread Chris
Hi, when using pModel = new ListModelP(){ @Override public ListP getObject() { return someService.calculate(); } }; I experience that in this case #someService.calculate() is called several times consecutively when loading the page. Why is this the case? Setting the model in

Re: ListPanel - update model

2015-02-15 Thread Martin Grigorov
On Sun, Feb 15, 2015 at 6:48 PM, Chris chris...@gmx.at wrote: Hi, when using pModel = new ListModelP(){ @Override public ListP getObject() { return someService.calculate(); } }; I experience that in this case #someService.calculate() is called several times

Re: [ANNOUNCE] WicketStuff 7.0.0-M5 is released

2015-02-15 Thread Wicket und Cocoon
I don't know what has changed i always get the error Failed to execute goal on project myproject: Could not resolve dependencies for project com.mycompany:myproject:war:1.0-SNAPSHOT: Could not find artifact org.wicketstuff:wicketstuff-jwicket-examples:jar:7.0.0-M4 in central

Wicketstuff

2015-02-15 Thread Wicket und Cocoon
in the download from github jquery and jwicket don't work when i try to get it by maven dependency maven cannot find. regards Heiner - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

wicket-examples is not reachable - started with StartExamples

2015-02-15 Thread Tobias Soloschenko
Hi, I try to start the wicket-examples module with org.apache.wicket.examples.StartExamples, but if I try to access it - it seems to be not reachable - logging says that the applications are started up. I tried to access it via http://127.0.0.1:8080/, http://127.0.0.1:8080/images and

Re: wicket-examples is not reachable - started with StartExamples

2015-02-15 Thread Martin Grigorov
Hi Tobias, http://localhost:8080 is the correct one. I just tried with http://127.0.0.1:8080 and it works fine too (as expected). Do you see the logs by Atmosphere ? Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, Feb 16, 2015 at 8:23 AM, Tobias

Re: wicket-examples is not reachable - started with StartExamples

2015-02-15 Thread Tobias Soloschenko
Hi Martin, mh I can't reach the app that way. :-/ yes there are Atmosphere logs: INFO - AtmosphereFramework- Latest version of Atmosphere's JavaScript Client 2.2.7 INFO - AtmosphereFramework but also I got some Exceptions: Caused by: java.lang.ClassCastException:

Re: Question regarding index handling with RefreshingView and OddEvenItem

2015-02-15 Thread Stefan Renz
Hi, I know that I'm skirting around answering your questions, but you could add an AttributeAppender to the item based on the index. Something like item.add( AttributeAppender.modify( class, item.getIndex() % 2 == 1 ? getEvenCssClass() : getOddCssClass() ); Apply further refactorings to

Re: wicket-examples is not reachable - started with StartExamples

2015-02-15 Thread Martin Grigorov
On Mon, Feb 16, 2015 at 8:41 AM, Tobias Soloschenko tobiassolosche...@googlemail.com wrote: Hi Martin, mh I can't reach the app that way. :-/ yes there are Atmosphere logs: INFO - AtmosphereFramework- Latest version of Atmosphere's JavaScript Client 2.2.7 INFO -

Re: wicket-examples is not reachable - started with StartExamples

2015-02-15 Thread Tobias Soloschenko
Good point - solved the problem - there was a wrong build path entry. (Server Runtime) Examples are running for me, now Thanks a lot! kind regards Tobias Am 16.02.15 um 08:05 schrieb Martin Grigorov: On Mon, Feb 16, 2015 at 8:41 AM, Tobias Soloschenko tobiassolosche...@googlemail.com