Re: problem with AbstractEntityModel from Igor Vaynberg

2014-05-05 Thread Yahoo
First I have to tell you concerning the mapping I used the wrong word the dependencies in the mapping are not recursive bur circular. Am 04.05.2014 22:24, schrieb mscoon: I'm not sure I see something wrong in your code, but then again you have omitted a lot of stuff which could be cruicial. Do

Re: problem with AbstractEntityModel from Igor Vaynberg

2014-05-05 Thread mscoon
In a previous message you sent the following snippets: //@XmlTransient @ManyToOne(cascade = CascadeType.MERGE,fetch=FetchType.LAZY) @JoinColumn(name="NachKundNr",insertable=false, updatable=false) public Kunde getKunde(){ return this.kunde; } recursive Part for Kunde @XmlTransien

Re: problem with AbstractEntityModel from Igor Vaynberg

2014-05-05 Thread Yahoo
Am 05.05.2014 11:05, schrieb mscoon: In a previous message you sent the following snippets: //@XmlTransient @ManyToOne(cascade = CascadeType.MERGE,fetch=FetchType.LAZY) @JoinColumn(name="NachKundNr",insertable=false, updatable=false) public Kunde getKunde(){ return this.kunde;

Custom RequestLogger

2014-05-05 Thread rexar
Hi everyone! I have my own analytic system and use it also for monitoring some system properties. So now I want to monitoring page loading time, count, etc. I google a lot but do not found anything except RequestLogger or custom RequestCycle. I am not sure about RequestCycle (don't understand how

RE: TabbedPanel + authorization strategy

2014-05-05 Thread MDU
How should i impliment the ROl and Auth on the AbstractTab . Please find the below code for ref final List tabs = new ArrayList(); final AbstractTab ABCTab = new AbstractTab(new Model("ABC")) { //@Override Public Panel getPanel(final String panelId) {

RE: TabbedPanel + authorization strategy

2014-05-05 Thread MDU
How should i impliment the ROl and Auth on the AbstractTab . Please find the below code for ref final List tabs = new ArrayList(); final AbstractTab ABCTab = new AbstractTab(new Model("ABC")) { //@Override Public Panel getPanel(final String panelId) {

Progress Bar

2014-05-05 Thread Richard W. Adams
We have a requirement to implement a progress bar for long-running server operations. We can't use the code at https://github.com/wicketstuff/core/wiki/Progressbar, because it doesn't meet our corporate user interface look-and-feel standards. So, we started our own implementation. Our test page

Re: Stateless/Statefull pages - incorrect behaviour

2014-05-05 Thread Илья Нарыжный
Hi, Martin and Wicket users! Issue has been created and quickstart has been attached. https://issues.apache.org/jira/browse/WICKET-5578 Thanks! 2014-05-05 0:17 GMT+04:00 Martin Grigorov : > Hi, > > Please create a ticket and attach the quickstart. > Thanks! > > Martin Grigorov > Wicket Trainin

AjaxFormComponentUpdatingBehavior attached to parent

2014-05-05 Thread Edgar Merino
Hello, I currently have a Panel with a DropDownChoice added to it, currently I have a method (MyPanel#addBehavior()) to delegate adding behaviors to the DDD, but I would like to know if it would be possible to attach the behavior to the Panel instead of the DDD. Is such thing possible? Thank

Re: problem with AbstractEntityModel from Igor Vaynberg

2014-05-05 Thread mscoon
This is a hibernate issue, not a wicket issue. As I said before I am now 99% sure the problem is with the way you are using hibernate. The bug you are getting is not caused by the line you highlighted. The line Kunde kunde=kundeManager.get(new Long(pars.get("kundennr").toString())); executes a se

Re: problem with AbstractEntityModel from Igor Vaynberg

2014-05-05 Thread mscoon
​Actually what I said below is wrong because this line is after the line that throws the exception. But my explanation still holds. Something before the line that is throwing the exception is causing an object with a reference to a new ​Nachweise to be saved while the Nachweise is still unsaved. Yo

Re: AjaxFormComponentUpdatingBehavior attached to parent

2014-05-05 Thread Sven Meier
No, the AjaxFormComponentUpdatingBehavior has to be added to the formComponent. Your custom Panel can override add(Behavior...) to do the forwarding though. Sven On 05/05/2014 08:19 PM, Edgar Merino wrote: Hello, I currently have a Panel with a DropDownChoice added to it, currently I have a m

Re: AjaxFormComponentUpdatingBehavior attached to parent

2014-05-05 Thread Edgar Merino
Ah! Never though of doing that, I just realized that add(Behavior...) method is not final, I don't know where I saw that the signature for this and add(Component...) was final Thanks for the help! On 05/05/14 14:45, Sven Meier wrote: No, the AjaxFormComponentUpdatingBehavior has to be adde

Re: Progress Bar

2014-05-05 Thread Martin Grigorov
Hi, On Mon, May 5, 2014 at 7:18 PM, Richard W. Adams wrote: > We have a requirement to implement a progress bar for long-running server > operations. We can't use the code at > https://github.com/wicketstuff/core/wiki/Progressbar, because it doesn't > meet our corporate user interface look-and-

Wicket atmosphere

2014-05-05 Thread Olivier Dutrieux
Could you please update the wicket-atmosphere with the last release 2.1.4 : I know that this version depend of jquery 2.0.3+ but there is a pure javascript version (no jquery depend) : https://github.com/Atmosphere/atmosphere-javascript And I notice that's your version of TrackMessageSizeFilter

Re: Custom RequestLogger

2014-05-05 Thread Martin Grigorov
Hi, Extend org.apache.wicket.protocol.http.RequestLogger#log() and use the passed parameters as you need. Setup it with org.apache.wicket.Application#newRequestLogger Martin Grigorov Wicket Training and Consulting On Mon, May 5, 2014 at 4:37 PM, rexar wrote: > Hi everyone! > > I have my own a

RE: Progress Bar

2014-05-05 Thread Colin Rogers
There is a pretty nifty, jquery based progress bar, in wicket-jquery-ui library... http://www.7thweb.net/wicket-jquery-ui/progressbar/DefaultProgressBarPage Cheers, Col. -Original Message- From: Richard W. Adams [mailto:rwada...@up.com] Sent: Tuesday, 6 May 2014 3:19 AM To: users@wicket