Why feedback panel won't work

2009-12-27 Thread uud ashr
Hi all, Why does wicket panel don't work if I do this: class MyPage extends WebPage { public MyPage() { add(new LinkVoid(myLink) { public void onClick() { * info(You just click me);* *setResponsePage(MyAnotherPage.class); // feedback panel

GuiceInjector

2009-10-27 Thread uud ashr
Hi, I need to use InjectorHolder.getInjector().inject(...) but I'm using Guice (not Spring), I searching trough the code but I can't find how to do InjectorHolder.setInjector(...a guice injector...). Can someone (comitters) add GuiceInjector, it will be looks like: import

Re: Wicket and FileUpload on Google App Engine

2009-09-08 Thread uud ashr
. Thanks. On Sun, Aug 30, 2009 at 6:31 PM, uud ashr uuda...@gmail.com wrote: Hi all Just want to share. If you have problem with file upload on Google App Engine, I just done some experiment and it works. Use the attached files. I didn't create this, I just modify from the existing wicket

Sign In and returning page

2009-08-30 Thread uud ashr
Hi all, Need help here, another wicket question. The case is I have User Panel on all pages in my website. User Panel contains SignIn link (if user not logged in yet), SignOut link and label of the logged user (if the user has logged in). Solution 1. On SignIn link, I'm using

Re: Sign In and returning page

2009-08-30 Thread uud ashr
the login was successful. Regards, Peter uud ashr írta: Hi all, Need help here, another wicket question. The case is I have User Panel on all pages in my website. User Panel contains SignIn link (if user not logged in yet), SignOut link and label of the logged user (if the user has logged

Re: Wicket Google App Engine Compatible

2009-08-28 Thread uud ashr
Yes, Wicket is semi-compatible. - I have some trouble when I want to UploadFile, becase it write to temporary file and GAE not allowed you to do that. It solve but you have to re-code the wicket so is not save to temporary file, but write to DataStore. - Another is I can't use

Re: [announce] Wicket 1.4.1

2009-08-21 Thread uud ashr
any release/changes notes? On Thu, Aug 20, 2009 at 11:39 PM, Anton Veretennikov anton.veretenni...@gmail.com wrote: Thank you! Great news! On Thu, Aug 20, 2009 at 10:14 PM, Jeremy Thomersonjer...@wickettraining.com wrote: 1.4.1 is now available as source in the releases dir. --

Re: Get all sessions and manipulate them

2009-08-14 Thread uud ashr
projects, that wanna manipulate the sessions any common feature in wicket? Maybe 1.4.x? Regards! Jing -Original Message- From: uud ashr [mailto:uuda...@gmail.com] Sent: Dienstag, 11. August 2009 13:25 To: users@wicket.apache.org Subject: Re: Get all sessions

Re: Get all sessions and manipulate them

2009-08-11 Thread uud ashr
I don't know. Asked many times but maybe not so popular. I can't find it easily. Do I have to save it manually all available session by creating class implementing ISession store? Or there is another way? Regards, uudashr On Tue, Aug 11, 2009 at 11:36 AM, Jeremy Thomerson

Get all sessions and manipulate them

2009-08-10 Thread uud ashr
Hi all, How to manipulate all existing sessions on wicket. I can get the SessionData trough getRequestLogger().getLiveSessions(), but I can't manipulate the SessionData. For examples, I have session class: public class MyAppSession extends WebSession { ... public void setLoggedUser(User

Re: Fancy URL

2009-08-05 Thread uud ashr
Works, Thx Igor. I try to use setResponsePage to BlogDetails on the constructor of the Blog page and it works too. So any recommendation picking between *setResponsePage* and throw * RestartResponseException*? Regards, uudashr On Wed, Aug 5, 2009 at 11:21 AM, Igor Vaynberg

Re: Fancy URL

2009-08-04 Thread uud ashr
I've looked to HybridUrlCodingStrategy this is not what I expected. Using HybridUrlCodingStrategy I can do /blog/param1/value1/param2/value2 which is: 1. I can use it to bind mount(new HybridUrlCodingStrategy(blog, Blog.class)) and call url /blog and without no parameter defined, that is OK 2.

Re: Fancy URL

2009-08-04 Thread uud ashr
Hi Igor, Thx for replying. I know (or maybe I'm wrong), but I want same mountPath for a different class based on it's parameter. I see several things like this on ruby, I can do this too on Grails, I wonder how to do this on Wicket. *http://localhost/app/blog/myblog* - it go to Blog.class

Re: Fancy URL

2009-08-04 Thread uud ashr
Sorry I forgot, *myblog* can be changes, because there would be a lot of blog there (eg: *myblog, yourblog, testblog*), the we can get the value from the database. i use */blog* mount path and get the parameter next to it, */blog/myblog* it means shows blog page for *myblog*, */blog/yourblog*

Re: Fancy URL

2009-07-30 Thread uud ashr
Okay thx, I'll read it On Wed, Jul 29, 2009 at 9:34 PM, Mathias Nilsson wicket.program...@gmail.com wrote: take a look at HybridUrlCodingStrategy -- View this message in context: http://www.nabble.com/Fancy-URL-tp24715302p24720044.html Sent from the Wicket - User mailing list archive at

Fancy URL

2009-07-29 Thread uud ashr
Hi all, Need help here. What is the best way or how can I mount this kind of URL? *http://localhost/app/blog/myblog* - it go to Blog.class *http://localhost/app/blog/myblog/201* - go to BlogDetails.class which open blog entry with ID 201 *http://localhost/app/blog/myblog/category* - go to

Re: File upload without writing to temp file (on Google App Engine)

2009-07-15 Thread uud ashr
, but I use simple loop to clean up the unreachable PhantomReference on every request. Regards, uudashr 2009/7/10 uud ashr uuda...@gmail.com I've been thinking to change the implementation.No more write to temp file, but write to datastore. We can use this as standard way to store file on google

Re: File upload without writing to temp file (on Google App Engine)

2009-07-10 Thread uud ashr
I've been thinking to change the implementation.No more write to temp file, but write to datastore. We can use this as standard way to store file on google app engine. I wonder, is there anyone who create something like this? Regards, uudashr On Mon, Jun 22, 2009 at 4:07 PM, Dolejs Vlastimil

Re: Page expired if I'm using ListView

2009-06-03 Thread uud ashr
Yes, there is serialization errors. Thanks. I think I have to turn on the log from now. Regards, uudashr On Thu, Jun 4, 2009 at 1:56 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: any serialization errors in the logs? -igor On Wed, Jun 3, 2009 at 11:45 AM, uud ashr uuda...@gmail.com wrote