delete messages

2012-12-20 Thread Dirk Wichmann
Hi all, since a view month I use wicket 6.1.1 and I'm new here, so I hope that I'm able to describe my problem so you can understand it right. I have implemented a login panel, inside this panel I have a modal window (ModalWindow) where the user is able to put in his mail address, so I can

Re: delete messages

2012-12-21 Thread Dirk Wichmann
); target.add(feedbackPanel); will re-render the FeedbackPanel and this will replace the message from 1) with the one from 2) On Thu, Dec 20, 2012 at 10:51 PM, Dirk Wichmann d...@team-wichmann.dewrote: Hi all, since a view month I use wicket 6.1.1 and I'm new here, so I hope that I'm able

Re: delete messages

2012-12-22 Thread Dirk Wichmann
, that doesn't look correct. Once rendered the messages should be cleared. Please create a quickstart. Sven On 12/21/2012 06:44 PM, Dirk Wichmann wrote: Hi Martin, thanks for your reply, but that is not my problem, Example: 1) the user entered invalid password - error feedback message is shown 2

Re: delete messages

2012-12-22 Thread Dirk Wichmann
it easier to analyse the problem or even better you will find an error on your side when you create a minimal example for it ;). Sven On 12/22/2012 01:57 PM, Maxim Solodovnik wrote: I believe it should be attached to the JIRA issue On Dec 22, 2012 7:38 PM, Dirk Wichmann d...@team-wichmann.de wrote

mark bookmarkable Link as selected

2013-01-05 Thread Dirk Wichmann
the user is. First I thought that the best way is to use a Behavior and look in the onComponentTag method if the link is clicked but that wont work. Have anyone a better idea or a hint where I should take a closer look? Thanks in advance Dirk -- Mit freundlichem Gruß *Dirk Wichmann* d...@team

Re: mark bookmarkable Link as selected

2013-01-06 Thread Dirk Wichmann
Hi Per, sorry, but I dont understand?? what means linksto(page) in bpl. Athen I know the onconfigure method but what should I check there?? Thanks in advance Cheers Dirk Mit freundlichem Gruß *Dirk Wichmann* d...@team-wichmann.de mailto:d...@team-wichmann.de Mobil: +49 163 569 2 563 Am

Re: mark bookmarkable Link as selected

2013-01-07 Thread Dirk Wichmann
Ah, I see, thats exact what I'm searching for. I've wrapped the BookmarkableLink in a Panel and override onConfigure() so the default wont match. Thanks, a lot Cheers Dirk Mit freundlichem Gruß *Dirk Wichmann* d...@team-wichmann.de mailto:d...@team-wichmann.de Mobil: +49 163 569 2 563 Am

logout on session destroy

2013-11-15 Thread Dirk Wichmann
Hi all, it's quite frustrating, a simple thing gets complicated. I have a Webapp with login page and logout button. If the user clicks the logout I write a logout timestamp in the database. Now I want to write the same timestamp when the session expires. Only thing I have found on the Web is to

Re: logout on session destroy

2013-11-16 Thread Dirk Wichmann
Wicket - Développement Wicket Le 15 nov. 2013 à 23:19, Dirk Wichmann dir...@team-wichmann.de a écrit : Hi all, it's quite frustrating, a simple thing gets complicated. I have a Webapp with login page and logout button. If the user clicks the logout I write a logout timestamp in the database

Re: logout on session destroy

2013-11-16 Thread Dirk Wichmann
is a callback method that is executed when the user session is invalidated either by explicit call to {@link org.apache.wicket.Session#invalidate()} or due to HttpSession expiration. François Meillet Formation Wicket - Développement Wicket Le 16 nov. 2013 à 12:19, Dirk Wichmann dir...@team

Re: logout on session destroy

2013-11-16 Thread Dirk Wichmann
Formation Wicket - Développement Wicket Le 16 nov. 2013 à 13:17, Dirk Wichmann dir...@team-wichmann.de a écrit : sorry, there is no methode onInvalidate() to overwrite?? not in AuthenticatedWebSession or WebSession or in Session (I use Wicket 6.1) Am 16.11.2013 12:47, schrieb Francois

Wicket JQuery UI Datepicker

2013-11-17 Thread Dirk Wichmann
Hi all, at the Moment I have trouble to configure the DatePicker from JQuery UI. I have included com.googlecode.wicket-jquery-ui Version 6.12.0 The DatePicker is shown in the UI but Date is allways displayed as 11/08/2013 and I get the error date cannot converted What is the trick to get it

searching for a Rich text editor

2013-11-18 Thread Dirk Wichmann
Hi, I'm searching for Rich text editor to integrate in my page, but at the moment nothing seems to work. Found Tynimce Wicket-jQuery (Kendo) Visural Wicket and examples, but they dont work with wicket 6.12 maybe. Have you maybe any hint for me?? Thanks in advance Cheers

Re: searching for a Rich text editor

2013-11-19 Thread Dirk Wichmann
.2013.2.716), whereas wicket-kendo-ui-12.0.0 is still based on the previous. you can try out wicket-kendo-ui-6.12.1-SNAPSHOT. Remember to clean your browser's cache. https://github.com/sebfz1/wicket-jquery-ui/issues/75 Best regards, Sebastien. On Mon, Nov 18, 2013 at 10:13 PM, Dirk

jquery ui DatePicker

2014-04-17 Thread Dirk Wichmann
Hi, is's quite frustrating, I use the jquery ui DatePicker for a valid to filed on a user form. Everything seems to be ok, but I want to display that a user don't expire and so I save 31.12. (german date format dd.MM.) in database. Now I try to edit a user and the init of the form is

Re: jquery ui DatePicker

2014-04-17 Thread Dirk Wichmann
Hi, that's it, thanks a lot, sometimes the solution is so near. Cheers Dirk Am 17.04.2014 16:04, schrieb Sebastien: new DatePicker(mydate, model, dd.MM., new Options(dateFormat, Options.asString(dd.mm.yy))); - To