Re: java wickets menu on image button

2016-10-03 Thread Martin Grigorov
Hi, Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sun, Oct 2, 2016 at 4:31 PM, ASHU_JAVA wrote: > Hi Martin, > > Thanks a lot for your suggestion. > > My requirement is nearly complete, the only issue I'm facing right now is > *how to open the List link in n

Re: Migration from 1.4.17 to 7.3

2016-10-03 Thread Martin Grigorov
Hi, 1) http://wicketinaction.com/2012/07/wicket-6-resource-management/ (section "Header Items") 2) http://wicketinaction.com/2012/07/wicket-6-javascript-improvements/ (section "Ajax request attributes") 3) see IResource and AbstractResource 4) Correct! Althougth you don't need the override - it

AutoCompleteTextField in input form does not display description, but id

2016-10-03 Thread Iamuser
Hello, I'm using wicket 7. I have a page with an input form. The first input field used to be a DropDownChoice. When user selected the description from the DropDownChoice, then the id was provided behind the scenes and on form save, the model bounded to the form was updated. The new requirement i

ajax timer dying

2016-10-03 Thread Jonathan Locke
hello all, been a while! i don't quite understand the parameters of this issue i'm running into yet, but i have an AbstractAjaxTimerBehavior that i'm adding to my page in order to handle updates from asynchronous queries. it works great except that *every once in a while* the timer dies and there

Re: ajax timer dying

2016-10-03 Thread Tobias Soloschenko
Hi, maybe https://ci.apache.org/projects/wicket/apidocs/6.x/org/apache/wicket/util/time/Duration.html Duration.MAXIMUM kind regards Tobias > Am 03.10.2016 um 20:07 schrieb Jonathan Locke : > > hello all, > > been a while! i don't quite understand the parameters of this issue i'm > running i

Re: ajax timer dying

2016-10-03 Thread Sven Meier
My guess: https://issues.apache.org/jira/browse/WICKET-6191 Regards Sven Am 03.10.2016 um 20:16 schrieb Tobias Soloschenko: Hi, maybe https://ci.apache.org/projects/wicket/apidocs/6.x/org/apache/wicket/util/time/Duration.html Duration.MAXIMUM kind regards Tobias Am 03.10.2016 um 20:07

Re: Migration from 1.4.17 to 7.3

2016-10-03 Thread sorinev
Regarding #4, how do I redirect it to my https url then? The 1.4.17 class we extended built a new https url and set it on a response. This new method appears, yes, to do nothing. When I go to my login url now or try to type the https url for the login page directly, i stay on http and port 80 (port

Re: ajax timer dying

2016-10-03 Thread Jonathan Locke
That was a pretty good guess! It's working now, thanks. Jon On Mon, Oct 3, 2016 at 12:28 PM, Sven Meier wrote: > My guess: > > https://issues.apache.org/jira/browse/WICKET-6191 > > Regards > Sven > > > > Am 03.10.2016 um 20:16 schrieb Tobias Soloschenko: > >> Hi, >> >> maybe https://ci.apa

Re: Migration from 1.4.17 to 7.3

2016-10-03 Thread Martin Grigorov
Is your login page annotated with @RequireHttps ? On Oct 3, 2016 10:17 PM, "sorinev" wrote: > Regarding #4, how do I redirect it to my https url then? The 1.4.17 class > we > extended built a new https url and set it on a response. This new method > appears, yes, to do nothing. When I go to my l

Re: Migration from 1.4.17 to 7.3

2016-10-03 Thread sorinev
Since the previous way of doing it was never referenced, I figured I'd comment the new way out and see what happened. It works like it should. So I guess the previous class extension and overriding must have been something that was tried and later abandoned but not deleted. -- View this message in

Unexpected Invocation of #onSubmit()

2016-10-03 Thread sorinev
I'm in the middle of upgrading from 1.4.17 to 7.3 and one of many issues is with the AjaxButton class that we extended. We provided three constructors (id and form; id; id and model), an init function common to all three, and an override of getAjaxCallDecorator(). Init function did a few add(Javas