Re: [Wicket-user] Autocomplete - selecting (higlighting) first option by default.

2007-05-25 Thread Sean Sullivan
IMHO, it would be nice if Java programmers could control this behavior with a Java API. On 5/25/07, Dipu <[EMAIL PROTECTED]> wrote: At the moment with Wicket's auto complete list we need to scroll down to select an option from the Autocomplete list. It would be nice to have the first item

[Wicket-user] ResourceFinder issue

2007-05-25 Thread mchack
At a loss. I have been trying to locate my markup from the classpath to the root web context. It appears to find the file(s0 but for a particular one I get the following exception WicketMessage: The component(s) below failed to render. A common problem is that you have added a component in code b

[Wicket-user] Problem with page parameters

2007-05-25 Thread neiroman neiroman
Hello, I'm new in wicket and I have next problem. My application uses bookmarkable pages. Than I try to access to page with incorrect params set (http://localhost:8080/index/ff/ ) I've got the error : java.lang.IllegalStateException: URL fragment has unmatched key/value pair: ff/ at wicket.r

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-25 Thread Eelco Hillenius
Yep. Depending on your renderStrategy (which by default is REDIRECT_TO_BUFFER), Wicket issues redirects (HttpServletResponse#sendRedirect), which are typically (or always?) translated to 302s by the servlet container. Eelco On 5/25/07, Sean Sullivan <[EMAIL PROTECTED]> wrote: > > Question: > > Is

Re: [Wicket-user] wicket-1.3b1 examples

2007-05-25 Thread Eelco Hillenius
Reinout, could you please try putting: org.apache.wicket.util.lang.Objects.setObjectStreamFactory(new IObjectStreamFactory.DefaultObjectStreamFactory()) in your application's init method (or update to the latest Wicket snapshot)? If the problem stays, it should give you a clearer message what is

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-25 Thread Sean Sullivan
Question: Is Wicket setting the 302 response code for these HTTP requests? I am seeing the 302 status code in all responses. (302 == SC_MOVED_TEMPORARILY) Sean On 5/25/07, Sean Sullivan <[EMAIL PROTECTED]> wrote: Ok, I made the change to "home/" but I'm still having the same problem.

Re: [Wicket-user] wicket-1.3b1 examples

2007-05-25 Thread Philip A. Chapman
It looks like your page, or a model or component attached to that page holds a reference to an object that cannot be serialized. That's a no-no. Once a request has been processed, the pages are serialized and stored in a cache in case the user needs to access them again via back button. On Fri,

Re: [Wicket-user] Wicket minis : use of Veil

2007-05-25 Thread NickCanada
Igor - I just replaced if (component != null) with if (component == null) and it seems to work... -- View this message in context: http://www.nabble.com/Wicket-minis-%3A-use-of-Veil-tf3817418.html#a10807555 Sent from the Wicket - User mailing list archive at Nabble.com. ---

[Wicket-user] Wicket minis : use of Veil

2007-05-25 Thread NickCanada
Hi there Is it possible for someone to give me an example of how to implement a Veil from the Wicket Minis contrib? if I add a veil to a component I just get "java.lang.IllegalStateException: This behavior is already bound to component..." Looking at the source I see that if (component != null)

[Wicket-user] wicket-1.3b1 examples

2007-05-25 Thread Reinout van Schouwen
Hello all, During ApacheCon earlier this month I first heard from Wicket. My interest was aroused and the past few days I've been trying to get started with wicket 1.3b1 (yes, choosing the latest stable version might have been better, but hey, I like cutting edge ;) So one of the things I have be

Re: [Wicket-user] Including wicket page from JSP?

2007-05-25 Thread Scott Swank
Consider also the solution we implemented in house to allow arbitrary Wicket components in an external web page -- including of course a JSP. http://www.nabble.com/Wicket-and-embeddable-Ajax-components-tf3604793.html#a10084198 On 5/25/07, Bruno Borges <[EMAIL PROTECTED]> wrote: > You can do it wi

Re: [Wicket-user] Tapestry in Netbeans tutorial

2007-05-25 Thread Ayodeji Aladejebi
I suppose their is currently some work on going on wicket support with Netbeans Here http://www.netbeans.org/kb/55/quickstart-wicket-in-netbeans.html i use it and its basic enough and i use it to train beginners in wicket i believe a Good plugin for wicket in Netbeans will also boost adoption

Re: [Wicket-user] Tapestry in Netbeans tutorial

2007-05-25 Thread Philip A. Chapman
So you'll be working on netbeans integration? On Fri, 2007-05-25 at 12:23 -0400, cowwoc wrote: > http://www.netbeans.org/kb/55/quickstart-tapestry-in-netbeans.html > > Would be nice to have similar integration for Wicket. It is especially > nice how you get to specify Tapestry as a f

Re: [Wicket-user] Tapestry in Netbeans tutorial

2007-05-25 Thread Nick Heudecker
I think something like this already exists. Google for "netbeans wicket". On 5/25/07, cowwoc <[EMAIL PROTECTED]> wrote: http://www.netbeans.org/kb/55/quickstart-tapestry-in-netbeans.html Would be nice to have similar integration for Wicket. It is especially nice how you get

[Wicket-user] Tapestry in Netbeans tutorial

2007-05-25 Thread cowwoc
http://www.netbeans.org/kb/55/quickstart-tapestry-in-netbeans.html Would be nice to have similar integration for Wicket. It is especially nice how you get to specify Tapestry as a framework your Web Project uses and it then integrates nicely throughout. Gili signature.asc Desc

Re: [Wicket-user] Wicket 1.3 beta 1 and Websphere 6.0

2007-05-25 Thread Sean Sullivan
Ok, I made the change to "home/" but I'm still having the same problem. I am unable to visit the application homepage: http://dev.foobar.com/wicketdemo/home I've also tried http://dev.foobar.com/wicketdemo/home/ (trailing slash) but it yields the same result. I think that I am experiencing a

Re: [Wicket-user] Problem with jsessionid in mounted Resources

2007-05-25 Thread Korbinian Bachl
Ahh, I now understand your main trouble. I think that we had this question on the list already, but can't remind how it got solved... maybe our "god-of-code" Igor has an idea how ? > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Rüdige

Re: [Wicket-user] Including wicket page from JSP?

2007-05-25 Thread Bruno Borges
You can do it with a runtime include But watch out for conflicts between HTMLs and you will need to do some hacks like substring code inside tag only. Something like that. Possible it is, but isn't out of the box. :D "Everything is possible." []'s -- Bruno Borges Summa Technologies Inc. www.

[Wicket-user] Including wicket page from JSP?

2007-05-25 Thread Nino Saturnino Martinez Vazquez Wael
Hi I wont expect the above to be possible, but sometimes you just dont know? Is it possible, currently we are including it via an iframe tag, some say thats a bad way todo it... Whats your 2 cents? regards Nino - This SF.

[Wicket-user] Inserting JSP into wicket

2007-05-25 Thread Joel Hill
We're beginning the gradual process of converting our app over to wicket. Since there isn't time to recreate our navigation menu in wicket right now, I tried including the menu JSP in the wicket page using the technique at http://herebebeasties.com/2007-03-01/jsp-and-wicket-sitting-in-a-tree/. It

[Wicket-user] I got this : Expected close tag for ...

2007-05-25 Thread Matthieu Casanova
Hi, I'm new with Wicket framework and I have a little problem : I have a list that contains Strings. Those strings can be a key in a map that contains another list. I want to display the values of my list, and if the map contains a list2 for the key, show the content of the list from the map too,

Re: [Wicket-user] Problem with jsessionid in mounted Resources

2007-05-25 Thread Rüdiger Schulz
Hello, 2007/5/25, Korbinian Bachl <[EMAIL PROTECTED]>: > Hi, > > i dont see the current problem but why dont you just go an easier way in > using IndexedParamUrlCoding strategy? > > e.g: > > -> create 1 normal Wicket WebPage having a (PageParameters params) strategy > -> mount that page in the ini

Re: [Wicket-user] Problem with jsessionid in mounted Resources

2007-05-25 Thread Korbinian Bachl
Hi, i dont see the current problem but why dont you just go an easier way in using IndexedParamUrlCoding strategy? e.g: -> create 1 normal Wicket WebPage having a (PageParameters params) strategy -> mount that page in the init() using mount(new IndexedParamUrlCodingStrategy("/images"));

[Wicket-user] Autocomplete - selecting (higlighting) first option by default.

2007-05-25 Thread Dipu
Hi, At the moment with Wicket's auto complete list we need to scroll down to select an option from the Autocomplete list. It would be nice to have the first item highlighted by default. I tried changing selected to 0 where its declared and it didn't work for me. On setting selected to 0 a do

Re: [Wicket-user] FileUploadField clear after failed validation. Still a bug?

2007-05-25 Thread manuel barzi
> make a jira issue for this (if not already there) on the apache side (wicket > sourceforge bug list got a bit lost) ? > And attach a patch then we will apply that asap. ? I am a wicket-user... remember? I can try registering this issue at JIRA (send me instructions), but for the patch I have

Re: [Wicket-user] Strange Behaviour with AjaxFormComponentUpdatingBehavior

2007-05-25 Thread Dipu
Hi Kent, Many thanks for the reply. I tried swithching to 1.2.6 but still i am getting the same error. Are you sure thats fixed in 1.2.6 I am using tomcat 5.5.17 Regards Dipu - Original Message - From: "Kent Tong" <[EMAIL PROTECTED]> To: Sent: Friday, May 25, 2007 9:01 AM Subject: Re

[Wicket-user] Problem with jsessionid in mounted Resources

2007-05-25 Thread Rüdiger Schulz
Hello all, I have (or had) a problem with mounted Resources and an iserted jsessionid. My goal is, as discussed here before: http://www.nabble.com/Bookmarkable-images-tf3706668.html#a10383150, to have dynamic image URLs with just slashes and no question-mark-separated querystring, like this: /ima

Re: [Wicket-user] Pattern for seperation of Java and Html -Comments Welcome

2007-05-25 Thread Korbinian Bachl
>i am not sure if the server team has changed that mode, but probably it should be development mode is on production servers. Does it cause any problem? well, in developement mode the system is slower and memory problems could occur sometimes (e.g.: just search in list for "too much open files p

Re: [Wicket-user] Creating link with a label

2007-05-25 Thread Martijn Dashorst
Look at the list of problems I have with a solution like this. I don't want this in core, or extensions. At best in wicketstuff-minis I'd prefer having an example on the site showing this as how to build custom components yourself, instead of adding it to core. Instead of giving someone a fish, t

Re: [Wicket-user] Creating link with a label

2007-05-25 Thread Ravindra Wankar
Johan, Martijn, Thanks for the explanation and the solutions. I understand the issues now. Unfortunately for a new comers such as me, the problems are not obvious and we're trying to map all what we've done with the traditional frameworks to Wicket and hence we land up in trouble. e.g I'm us

Re: [Wicket-user] Pattern for seperation of Java and Html - Comments Welcome

2007-05-25 Thread Eelco Hillenius
It would be great if you could list the sites at http://cwiki.apache.org/WICKET/#Index-SitesusingWicket Thanks ahead! Eelco On 5/25/07, Kadir Sener GUMUS <[EMAIL PROTECTED]> wrote: > Hi Johan, > as i said before, three leading technology has been used in the project; > wicket,hibernate and spri

Re: [Wicket-user] Creating link with a label

2007-05-25 Thread Johan Compagner
public abstract class LabelLink extends Link { private IModel labelModel; public LabelLink(String id, IModel linkModel, IModel labelModel) { super(id, linkModel); this.labelModel = labelModel; } protected void onComponentTagBody(MarkupStream markupStream, Com

Re: [Wicket-user] Strange Behaviour with AjaxFormComponen tUpdatingBehavior

2007-05-25 Thread Kent Tong
Dipu multicom.co.uk> writes: > If i override the isVersioned method > of the page and return false every thing works fine, i really have no clue > about whats happening and whats causing the error. Has anyone seen this > before ? Whats the best way to get around this ? > > I am using wicket

Re: [Wicket-user] Pattern for seperation of Java and Html - Comments Welcome

2007-05-25 Thread Kadir Sener GUMUS
Hi Johan, as i said before, three leading technology has been used in the project; wicket,hibernate and spring. the all sites are served by wicket in one war application. Additionally, a CMS application is used for html contents and wicket dynamically injects dynamic components. Oh you might have

Re: [Wicket-user] wicket - Load the pdf file after onSubmit

2007-05-25 Thread kenixwong
Thanks anyone... i get it This is the solution :clap: /*/ Public void onSubmit() { .. .. exportRequestDetailsAsPdf(sqlField, sqlCondition, sqlOrderBy); String report_name = "requestMaster_created_by_userid.pdf";

[Wicket-user] Page and Page in an internal frame cooperation

2007-05-25 Thread -Vlad-
Hi all! I've got the following problem: I have a page and an internal frame on it. To operate on that internal frame from the parent page, I have to keep reference to it in the parent page (InternalFrame.class has private method to get its page). It works but after the first load there are two in