Re: Issues with refreshing panel with form

2020-08-04 Thread Martin Grigorov
Hi, On Mon, Aug 3, 2020 at 2:53 PM Zimen, Michal wrote: > Hi Wicket Users, > > >I've just started to learn the Wicket by fixing some issues in our > legacy backlog repository. > > Therefore, I need some clarification to manage my blockpoints. Having > spent enough time to fix it by myself,

Re: Wicket and Vue.js synergy

2020-08-04 Thread Илья Нарыжный
Thank you, Martin! If somebody interested, work has begun in the following repository: https://github.com/OrienteerBAP/vuecket Features which I plan to add soon: 1) Support of Data Channel: channels for synchronization of data on Vue side and named Models on wicket side. 1 way sync, 2 way sync,

Re: Issues with refreshing panel with form

2020-08-04 Thread Martin Terra
Did you debug clearinput and model detach whether they occur expectedly? Snipplet is too small to see the big picture, and at the same time it seems too complex to get the big picture quickly from code (maybe you could share a 15 line pseudocode spec for the form, what it's intended to do)? **

Re: Issues with refreshing panel with form

2020-08-04 Thread Martin Grigorov
On Tue, Aug 4, 2020 at 2:53 PM Zimen, Michal wrote: > Thanks, > > Well, snippets from source code might come later. My concerns are, that > the issue I’m facing is related to this > https://issues.apache.org/jira/browse/WICKET-6041 > None weird logs have been found on both sides. > > DialogA

RE: Issues with refreshing panel with form

2020-08-04 Thread Zimen, Michal
Thanks, Well, snippets from source code might come later. My concerns are, that the issue I’m facing is related to this https://issues.apache.org/jira/browse/WICKET-6041 None weird logs have been found on both sides. DialogA with a nested form uses POST to update its stuff, but the dialogB

RE: Issues with refreshing panel with form

2020-08-04 Thread Zimen, Michal
Hi, The dialogB(without nested form) of panelB uses this snippet to update the models of the components in the root panel. It works perfectly unless other nested form is submitted in advance. onClose( target) { mandatePayerEditPanel.detachModels(); // this is the reference