Password in url after page recreation

2021-07-20 Thread Claudia Hirt
> Hi all, > > we currenlty facing some issues with the recreateBookmarkablePagesAfterExpiry > option. > We set this option to true, the user visits the login page and enters > username and password (""). Now the user waits > for the login till the session expires. Wicket forces a page

Re: Question about IChoiceRenderer

2018-10-30 Thread Claudia Hirt
. As I said this is really a minor thing, but the inconsistency with AbstractChoice annoys me ;) How would you suggest to solve this? Best regards, Claudia Hirt - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Question about IChoiceRenderer

2018-10-30 Thread Claudia Hirt
c explains). > > Wicket-Extensions' Select doesn't use IChoiceRenderer at all, so I don't > see what is the relation to the first part of your question. > >> On Fri, Oct 26, 2018 at 2:54 PM Claudia Hirt wrote: >> >> Hi all, >> >> i have a question about ICh

Question about IChoiceRenderer

2018-10-26 Thread Claudia Hirt
Hi all, i have a question about IChoiceRenderer used for Selectboxes. There is a method String getIdValue(Tobject, int index) to get the unique id value of an option object. The javadoc says the following: "This method is called to get the id value of an object (used as the value

Re: Problem with DiskDataStore

2018-04-19 Thread Claudia Hirt
Seems as if this was caused by WICKET-6471 <https://issues.apache.org/jira/browse/WICKET-6471> - FileSystemResource file descriptor leak. We did an upgrade to wicket 7.10 and hopefully it will solve it. Thanks anyway! Best regards, Claudia Hirt Am 18.04.2018 um 18:47 schrieb Francois M

Problem with DiskDataStore

2018-04-18 Thread Claudia Hirt
to a total breakdown of file system in my case. I saw this already was an issue here: http://apache-wicket.1842946.n4.nabble.com/DiskDataStore-errors-in-production-td4665842.html but there was no solution. Are there some settings in PageStore or anything to avoid this problem? Best regards, Claudia

Re: Disable component to prevent double click

2018-03-06 Thread Claudia Hirt
Hi again, I created a small sample project containing the double-click behaviors for ajax- and non-ajax-buttons and links: https://github.com/sunshineKE/wicketdoubleclickexample/ Best regards, Claudia Hirt Am 01.03.2018 um 20:16 schrieb Kamil Paśko: Dear Claudia, Don't you mind sharing

Re: Disable component to prevent double click

2018-03-01 Thread Claudia Hirt
like to share my code snippets with others who face the same problems if you‘re interested. Best regards, Claudia Hirt > Am 21.02.2018 um 21:59 schrieb Martin Grigorov <mgrigo...@apache.org>: > > You can override public CharSequence getAfterHandler(Component component) >

Re: Disable component to prevent double click

2018-02-21 Thread Claudia Hirt
property pointer-events does the trick in most cases but is poorly supported in Internet Explorer. I‘ll keep on trying... Best regards, Claudia Hirt > Am 20.02.2018 um 16:02 schrieb Andrea Del Bene <an.delb...@gmail.com>: > > Hi, > > as reported in its javadoc AjaxDis

Re: Disable component to prevent double click

2018-02-19 Thread Claudia Hirt
By the way: is there any reason why AjaxDisableComponentListener has no public constructor? > Am 19.02.2018 um 21:49 schrieb Claudia Hirt <hirt-clau...@gmx.de>: > > Hi all, > I‘m facing the problem of double submits when double clicking on buttons and > links. I was very p

Disable component to prevent double click

2018-02-19 Thread Claudia Hirt
Hi all, I‘m facing the problem of double submits when double clicking on buttons and links. I was very pleased to see there’s a new listener of https://issues.apache.org/jira/browse/WICKET-6448 implemented in wicket 7.10. But this only works for Buttons not for links like a SubmitLink. I‘m also

Re: The day Wicket became Apache Wicket 10 years ago!

2017-06-20 Thread Claudia Hirt
You're really doing a great job! Thanks for the great support i was totally suprised of getting so much help here! > Am 20.06.2017 um 08:24 schrieb James Selvakumar : > > It's heartening to see Wicket still going strong. > And I take this opportunity to thank all of you for

Re: Question about

2017-05-25 Thread Claudia Hirt
issue! > >> On 24/05/2017 18:45, Claudia Hirt wrote: >> Sorry, I think my description was a little unspecific. >> >> The problem appears with the following HTML-code: >> >> >> >> >> >> with autolinking set to true. >> >>

Re: Question about

2017-05-24 Thread Claudia Hirt
and Consulting https://twitter.com/mtgrigorov On Tue, May 23, 2017 at 9:47 PM, Claudia Hirt <hirt-clau...@gmx.de> wrote: Hi all, there's something I came across when trying to migrate an application to Wicket 7.7. When using an anchor link like with autmatic linking activated (getMarkupSe

Question about

2017-05-23 Thread Claudia Hirt
Hi all, there's something I came across when trying to migrate an application to Wicket 7.7. When using an anchor link like with autmatic linking activated (getMarkupSettings().setAutomaticLinking(true)) the AutolinkResolver breaks my hierarchy. This does not appear when encapsulating the

Re: inside inline frame

2017-05-15 Thread Claudia Hirt
I think this will work. > See org.apache.wicket.markup.head.filter.FilteringHeaderResponse for > inspiration. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > >> On Fri, May 12, 2017 at 10:36 PM, Claudia Hirt <hirt-clau...@gmx.de> wrote: >> >> Hi all, >> >

inside inline frame

2017-05-12 Thread Claudia Hirt
css of application affecting my header-panel. I think the only way to solve this would be to have the whole application page inside an iframe, because using CSS namespaces via IDs would be a hudge effort and be to risky. Thanks in advance! Best regards, Claudia Hirt

Re: Disabled links in 6.24

2017-03-02 Thread Claudia Hirt
Oh sorry, i think this was to fast. I had the opposite of this problem with wicket 7 where the tag is not rendered anymore for disabled links. So be aware that you have to remove your handling using setBeforeDisabledLink when you plan to migate to wicket 7. > Am 02.03.2017 um 19:35 schrieb

Re: Disabled links in 6.24

2017-03-02 Thread Claudia Hirt
Hi, I faced the same problem migrating to wicket 6. i simpy solved this with css-selector a:not([href]). > Am 02.03.2017 um 19:11 schrieb Entropy : > > Using Wicket 6.24, when i disable links, they get SPAN and EM tags instead. > This throws off our CSS guy. We would

Re: Display PDF in new tab

2017-03-01 Thread Claudia Hirt
Hi, Maybe this solution could help you: https://cwiki.apache.org/confluence/display/WICKET/AJAX+update+and+file+download+in+one+blow Von meinem iPhone gesendet > Am 01.03.2017 um 21:20 schrieb SeldonCrisis : > > Actually, scratch that. My question is now: How do I add Ajax