Problem with dynamic links in DataView.

2014-11-03 Thread Aleksey
I use Wicket 1.5.10 and I'm stuck at problem with DataView. I have overview page which contains filter and some container with elements. You can see simple example prepared by me: Filter contains TextField and AjaxLink. *HTML:* p labelSearch field/label input

Re: Problem with dynamic links in DataView.

2014-11-03 Thread Martin Grigorov
Hi, You can show a veil above the data view container or the whole page until the Ajax response comes. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, Nov 3, 2014 at 1:24 PM, Aleksey axel@gmail.com wrote: I use Wicket 1.5.10 and I'm stuck at problem

Re: Ordering of OnDomReadyHeaderItem

2014-11-03 Thread Martin Grigorov
Hi, A colleague of mine asked me the same question recently so I've just added a new global event that is fired once all Wicket.Ajax.ajax() calls are done. https://issues.apache.org/jira/browse/WICKET-5746 Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Oct

Bug in wicket-bootstrap's Navbar

2014-11-03 Thread Richter, Marvin
Hi Martin Michael, There is a bug in the Navbar Component which causes NavbarDropDownButtons to not work. DropDownButton's newInitializerScript function uses 'this' so in the header it renders: $('#component2 .dropdown-toggle').dropdown(); But the Navbar component does not call

Re: Bug in wicket-bootstrap's Navbar

2014-11-03 Thread Martin Grigorov
Hi, Thanks for reporting! Do you have a GitHub account ? Send us a Pull Request please ! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, Nov 3, 2014 at 3:46 PM, Richter, Marvin marvin.rich...@freenetdigital.com wrote: Hi Martin Michael, There is a bug

RE: Bug in wicket-bootstrap's Navbar

2014-11-03 Thread Richter, Marvin
That's the thing, I couldn't find a solution that seems to be the right way to fix it. My dirty workaround is to override the newIntitializerScript function and just remove the 'this'. Because applying setOutputMarkupId(true) doesn't have the expected effect, neither on the ListView nor the

Re: Problem with dynamic links in DataView.

2014-11-03 Thread Aleksey
Hi Martin Grigorov-4, Thanks a lot for the answer. Don't you know any other solutions? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problem-with-dynamic-links-in-DataView-tp4668229p4668246.html Sent from the Users forum mailing list archive at Nabble.com.

RE: Bug in wicket-bootstrap's Navbar

2014-11-03 Thread Richter, Marvin
Ah no. It's because of this: @Override protected void onInitialize() { super.onInitialize(); this.setRenderBodyOnly(true); } In the NavbarDropDownButton. -Original Message- From: Richter, Marvin Sent: Monday, November 03, 2014 3:21 PM To:

Re: Bug in wicket-bootstrap's Navbar

2014-11-03 Thread Martin Grigorov
Create an issue at https://github.com/l0rdn1kk0n/wicket-bootstrap please Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, Nov 3, 2014 at 4:22 PM, Richter, Marvin marvin.rich...@freenetdigital.com wrote: Ah no. It's because of this: @Override

Re: Ordering of OnDomReadyHeaderItem

2014-11-03 Thread Nick Pratt
Thanks Martin. I added this in JIRA. Im still curious why we need to requeue the events - cant we just fire the click handlers as and where defined? On Mon, Nov 3, 2014 at 8:27 AM, Martin Grigorov mgrigo...@apache.org wrote: Hi, A colleague of mine asked me the same question recently so

RE: Bug in wicket-bootstrap's Navbar

2014-11-03 Thread Richter, Marvin
Done https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/460 If you need more information please let me know. -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Monday, November 03, 2014 3:27 PM To: users@wicket.apache.org Subject: Re: Bug in

Re: Ordering of OnDomReadyHeaderItem

2014-11-03 Thread Martin Grigorov
Hi, I have no idea what requeueing you are talking about... I haven't read your ticket yet. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, Nov 3, 2014 at 4:27 PM, Nick Pratt nbpr...@gmail.com wrote: Thanks Martin. I added this in JIRA. Im still

wicket6 + sso and redirects

2014-11-03 Thread Jason Novotny
Hi, I'm adding support to my application use SSO outbound from my webapp to an Identity provider (IP) to authenticate a user from my webapp to an external web application. I have SSO code and the steps involved on my page are: 1. send redirect to

Migrating SecondLevelCacheSessionStore

2014-11-03 Thread ChambreNoire
Hello Wicketeers, I am posting this question in the hope that some if the more knowledgeable members of the wicket community can help me understand Wicket's serialisation process and use of SessionStores, etc.. I have been tasked with overhauling a fairly old Wicket project and this includes

Re: Migrating SecondLevelCacheSessionStore

2014-11-03 Thread ChambreNoire
I should add that this web application uses a Single Page approach. Everything is achieved via ajax panel replacement (which would make page versioning redundant wouldn't it?)... C -- View this message in context:

Re: Migrating SecondLevelCacheSessionStore

2014-11-03 Thread Martin Grigorov
Hi, I don't remember what SecondLevelCacheSessionStore was about. But most applications do not need to tune/tweak anything in the storages nowadays, so I'd recommend to just drop this custom code completely. See http://wicket.apache.org/guide/guide/internals.html#pagestoring for Wicket 1.5+.

Re: wicket6 + sso and redirects

2014-11-03 Thread Martin Grigorov
Hi, On Mon, Nov 3, 2014 at 8:43 PM, Jason Novotny jason.novo...@gmail.com wrote: Hi, I'm adding support to my application use SSO outbound from my webapp to an Identity provider (IP) to authenticate a user from my webapp to an external web application. I have SSO code and the steps involved