wicketstuff down

2010-07-20 Thread Vytautas Čivilis
Hi. As you might already noticed, http://wicketstuff.org is down. Anyone have any ideas? V

Re: date picker calendar shown on text field clicked

2010-05-29 Thread Vytautas Čivilis
Is everything ok with this patch? V 2010/5/28 Vytautas Čivilis > https://issues.apache.org/jira/browse/WICKET-2899 > > > On Fri, May 28, 2010 at 9:18 PM, Jeremy Thomerson < > jer...@wickettraining.com> wrote: > >> 2010/5/28 Vytautas Čivilis >> >> &

Re: date picker calendar shown on text field clicked

2010-05-28 Thread Vytautas Čivilis
https://issues.apache.org/jira/browse/WICKET-2899 On Fri, May 28, 2010 at 9:18 PM, Jeremy Thomerson wrote: > 2010/5/28 Vytautas Čivilis > > > Hi. > > > > It would be great, if you'd consider including following code to make > > TextField, that is assigned t

date picker calendar shown on text field clicked

2010-05-28 Thread Vytautas Čivilis
Hi. It would be great, if you'd consider including following code to make TextField, that is assigned to date picker, aware of date picker itself. So, when TextField is clicked, picker calendar would be displayed. Implement it is very easy: in wicket-date.js: add some configuration property, l

Re: wicketAjaxGet callback?

2009-10-21 Thread Vytautas Čivilis
nd store either callback or result to avoid race conditions. nino martinez wael wrote: > http://blog.jayway.com/2008/09/26/wicket-javascript-internals-dissected/ > > and also check the mootips on wicketstuff.. > > 2009/10/21 Vytautas Čivilis <mailto:vytautas.civi...@gmail.com>>

wicketAjaxGet callback?

2009-10-21 Thread Vytautas Čivilis
Hi. Is there any way wicketAjaxGet can call the provided callback function with parameters from the backend? Now, as far as I can see, there are only options to: 1. update component using AjaxRequestTarget 2. execute javascript using AjaxRequestTarget What I need is to call the particular functi

same model for multiple pages?

2009-09-21 Thread Vytautas Čivilis
Hi. I have the situation, where more than one page is referencing the same parent model - wrapped and not. I use thickbox (somewhat like modal window), and display separate pages in the thickbox using iframe. So you get like ParentPage ->creates-> SubTBPage. What I do want here, is for all those

Re: RequestCycle bug at urlFor?

2009-08-25 Thread Vytautas Čivilis
all-tabpanel > > Just thought it would be relevant mentioning. > > Francisco > > > 2009/8/24 Vytautas Čivilis : >> Hi. >> >> I'm using RequestCycle urlFor method for building my link in this >> fashion: getRequestCycle().urlFor(this, ILinkListener.INT

RequestCycle bug at urlFor?

2009-08-24 Thread Vytautas Čivilis
Hi. I'm using RequestCycle urlFor method for building my link in this fashion: getRequestCycle().urlFor(this, ILinkListener.INTERFACE, parameters). The idea is to have link with default behavior (implement onclick), but with the explicitly set parameters too. The parameters are being asked by 3rd

how to get RequestData in RequestCycle

2009-08-04 Thread Vytautas Čivilis
Hi. I'd like to log the request data (org.apache.wicket.protocol.http.RequestLogger.RequestData) in RequestCycle logRuntimeException. The RequestLogger keeps RequestData by it's private MetaData key in RequestCycle object. In other words, I can only completely re-implement RequestLogger to resolv

AjaxEditableLabel doesn't work in IE7

2009-07-29 Thread Vytautas Čivilis
Hi. I'm testing AjaxEditableLabel as well as AjaxEditableMultiLineLabel using wicket rc7 now, but the same problem initially occurred with rc3. Mysteriously, the ajax call isn't working with IE7, although it's working with IE6, firefox etc. Is it possible this is due to crippled IE7 installation

Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Vytautas Čivilis
> And for hybrid the internal urls are first a bookmarkable part and then > a wicket part and if those where params > i think we could encrypt them just fine. But dont know for sure what > hybrid does > > > > 2009/6/10 Vytautas Čivilis <mailto:vytautas.civi...@gmai

Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Vytautas Čivilis
to hybrid strat (or to crypt strat ;]). cvl Erik van Oosten wrote: > Hi Vytautas, > > You can not encrypt bookmarkable URLs as encryption is done per session. > So if you're URLs need to be secure you are limited to regular Link's. > > Regards, >Erik. > &

Re: HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Vytautas Čivilis
you encrypt the hybrid? > > 2009/6/10 Vytautas Čivilis <mailto:vytautas.civi...@gmail.com>> > > Hi. > > Is it possible to use both? > > CryptedUrlWebRequestCodingStrategy understands only > QueryStringUrlCodingStrategy (i.e. params encoded in x

HybridUrlCodingStrategy and CryptedUrlWebRequestCodingStrategy

2009-06-10 Thread Vytautas Čivilis
Hi. Is it possible to use both? CryptedUrlWebRequestCodingStrategy understands only QueryStringUrlCodingStrategy (i.e. params encoded in x=1&so=on format). Do I need to provide my own extension to CryptedUrlWebRequestCodingStrategy to support hybrid, or are there any existing ones? Is it possib