Re: Error during start of wicket application

2012-02-29 Thread Marco Springer
I'm using Intellij myself and with that, in the Project overview I see a list of dependencies projects are using. With that I can quickly see if I'm using multiple versions of a certain dependency. This same type of dependency list is present in Netbeans, only per project. And with Netbeans you

Re: Error during start of wicket application

2012-02-29 Thread Martin Grigorov
The problem may also happen when you have wicket-xyz.jar in the web container's shared folder and additionally in your .war#WEB-INF/lib folder. On Wed, Feb 29, 2012 at 10:00 AM, Marco Springer marcosprin...@gmail.com wrote: I'm using Intellij myself and with that, in the Project overview I see a

Re: Multi Tab and Session

2012-02-29 Thread André Schütz
Hi, Page1 gets the click of the submit button and collects the search word. This will be changed into a hash value and set as PageParameter (q=Hashvalue) to the ResponsePage which is Page2. Additionally, I store the hash value into a session HashMap which holds the hash value as key and an own

Re: more html templates for one java class

2012-02-29 Thread Dan12321
Thanks. I have: MyPanel.java (this class extends Panel), MyPanel.html and MyPanel_test.html. I try in MyPanel.java add method: @Override public String getVariation() { return test; } It is good, is not it? But it do not work. Is not there in wicket 1.5.4

Re: more html templates for one java class

2012-02-29 Thread Martin Grigorov
On Wed, Feb 29, 2012 at 11:08 AM, Dan12321 wee...@centrum.cz wrote: Thanks. I have: MyPanel.java (this class extends Panel), MyPanel.html and MyPanel_test.html. I try in MyPanel.java add method:        @Override        public String getVariation() {                return test;        }

Re: more html templates for one java class

2012-02-29 Thread Dan12321
Thanks. But it still seems that getVariable do not work. But getSession().setStyle(test); in constructor works. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-more-html-templates-for-one-java-class-tp4430757p4431115.html Sent from the Users forum mailing list

Markup not found when upgrading from 1.4.18 to 1.5

2012-02-29 Thread rawe
I changed my app from wicket 1.4.18 to 1.5.4 Now I get a MarkupNotFound Exception. In 1.4. the app was running without warnings/errors Does somebody have a hint? I'm using a form within a page. The form has a fragment child. *MarkupCode*: /div wicket:id=contentFragment1/ wicket:fragment

Re: Markup not found when upgrading from 1.4.18 to 1.5

2012-02-29 Thread Martin Grigorov
Hi, Make sure that wicket:fragment is inside wicket:child On Wed, Feb 29, 2012 at 1:03 PM, rawe ralph.wey...@dachser.com wrote: I changed my app from wicket 1.4.18 to 1.5.4  Now I get a MarkupNotFound Exception. In 1.4. the app was running without warnings/errors Does somebody have a hint?

Re: AjaxFormValidatingBehavior Submits Form When I Clicked Submit Button second Time

2012-02-29 Thread Seçil Aydın
I have fixed my problem, thank you for your attention. With my best regards. Secil - Wicket-Java -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxFormValidatingBehavior-Submits-Form-When-I-Clicked-Submit-Button-second-Time-tp4410686p4431285.html Sent from the

Re: Markup not found when upgrading from 1.4.18 to 1.5

2012-02-29 Thread rawe
Martin, do you mean something like ?? / div wicket:id=contentFragment1/ wicket:child wicket:fragment wicket:id=orderFragment1 fieldset ... /fieldset /wicket:fragment /wicket:child / Doesn't work! But normally I don't need a child tag due I don't include markup from a subclass

Re: Markup not found when upgrading from 1.4.18 to 1.5

2012-02-29 Thread Martin Grigorov
I mean that wicket:fragment should be in wicket:extend, wicket:panel or wicket:border if any of those is used. Your pasted code is not easy to follow but I think you should pass the form as parent container of the fragment instance. On Wed, Feb 29, 2012 at 2:12 PM, rawe ralph.wey...@dachser.com

Re: TextField update According to Another TextField update

2012-02-29 Thread Martin Grigorov
Use AjaxFormComponentUpdateBehavior(onchange) instead 2012/2/29 Seçil Aydın techlove...@gmail.com: Hi, I have two text fields next to each other. I want to change value of second textfield according to first textfield when first textfield loses focus. I am doing that with

Re: wrapping onclick in AjaxLink with 1.5.4

2012-02-29 Thread armhold
Hi Martin, I'm following the example https://cwiki.apache.org/WICKET/calling-javascript-function-on-wicket-components-onclick.html shown here . My code is literally that, added to the prototypical Wicket Quickstart HomePage.java: public class HomePage extends WebPage { private static

Re: wrapping onclick in AjaxLink with 1.5.4

2012-02-29 Thread Martin Grigorov
On Wed, Feb 29, 2012 at 2:53 PM, armhold armh...@gmail.com wrote: Hi Martin, I'm following the example https://cwiki.apache.org/WICKET/calling-javascript-function-on-wicket-components-onclick.html shown here . My code is literally that, added to the prototypical Wicket Quickstart

Re: wrapping onclick in AjaxLink with 1.5.4

2012-02-29 Thread armhold
Well that was simple, thank you. I'm pedantic enough to have added @Override to the getAjaxCallDecorator(), but I missed decorateScript() in my initial attempt. The method is being called now, and I have updated the Wiki. However the second example listed on the Wiki (AttributeAppender) also

Re: wrapping onclick in AjaxLink with 1.5.4

2012-02-29 Thread Martin Grigorov
On Wed, Feb 29, 2012 at 3:28 PM, armhold armh...@gmail.com wrote: Well that was simple, thank you.  I'm pedantic enough to have added @Override to the getAjaxCallDecorator(), but I missed decorateScript() in my initial attempt. The method is being called now, and I have updated the Wiki.

Re: TextField update According to Another TextField update

2012-02-29 Thread Seçil Aydın
Thanks Martin, I think it is the same think with OnChangeAjaxBehavior.Is not it? - Wicket-Java -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/TextField-update-According-to-Another-TextField-update-tp4431324p4431602.html Sent from the Users forum mailing list

Re: TextField update According to Another TextField update

2012-02-29 Thread Martin Grigorov
No, they are not. Check the difference between 'input' and 'change' JavaScript events. 2012/2/29 Seçil Aydın techlove...@gmail.com: Thanks Martin, I think it is the same think with OnChangeAjaxBehavior.Is not it? - Wicket-Java -- View this message in context:

wicket - check if user is logged (call method in every access to server)

2012-02-29 Thread Dan12321
Hello, is there any way how to check if user is logged? I can put into constructor of the class that have got extends Page something like this: if (new LogginControl().isUserLogged(user)) { ... } But this code I have to put into methods, that are called by ajax. So, is there any better way?

Re: wicket - check if user is logged (call method in every access to server)

2012-02-29 Thread Martin Grigorov
Check ISecuritySettings, IAuthenticationStrategy and IAuthorizationStrategy See wicket-authroles project for example how to use those On Wed, Feb 29, 2012 at 5:27 PM, Dan12321 wee...@centrum.cz wrote: Hello, is there any way how to check if user is logged? I can put into constructor of the

Dialog windows hang on close

2012-02-29 Thread pengebre
We have an exntensive web application thta was written in Wicket 1.3.14 which we recently upgraded to Wicket 1.4.17 for fixing some ajax issues dealing with Chrome and Safari. There was some changes that needed to be done to the existing code in the migration, and there is two outstanding issues

Cache TextTemplateResourceReferences

2012-02-29 Thread exaptis
Hi, i've been following this post in order to generate dynamic JS/CSS files ( https://cwiki.apache.org/WICKET/dynamically-generate-a-css-stylesheet.html https://cwiki.apache.org/WICKET/dynamically-generate-a-css-stylesheet.html ). Now I'm expiring white page flickers on page changes inside the

Re: Multi Tab and Session

2012-02-29 Thread Dan Retzlaff
Your description is clear, thank you. I'm not certain that the background thread's reference to the Session is valid outside of the servlet request. I would verify your assumption by logging the session's object ID when the value is read/written. I have one other thought for you. I believe Wicket

Re: java.lang.IllegalStateException: Can't call write(CharSequence) after write(byte[]) has been called.

2012-02-29 Thread singh13
Hi there, I am not too sure what you mean about DownloadLink. I am not using download link in any part of my code. To link to the provider page i am just using a normal link. -- View this message in context:

Re: java.lang.IllegalStateException: Can't call write(CharSequence) after write(byte[]) has been called.

2012-02-29 Thread Pierre Goupil
Sure. But Martin is just telling you to use this as a code example. Regards, Pierre On Wed, Feb 29, 2012 at 8:33 PM, singh13 gso...@gmail.com wrote: Hi there, I am not too sure what you mean about DownloadLink. I am not using download link in any part of my code. To link to the

Re: Multi Tab and Session

2012-02-29 Thread Andre Schütz
Hi, I could identify the cause of the problem, but still have no solution. I set some breakpoints and made some output messages to trace the system. The following thinks happened: (1) I submit a search in Tab1. The search word will be passed as Page Parameter to Page2 in Tab1. While Tab1 is

Wicket/Spring Boilerplate

2012-02-29 Thread Michael Laccetti
Just a quick note to folks that may be interested that I've created a Maven archetype that ties together Wicket 1.5 and Spring 3.1, along with Hibernate 4.1/JPA 2 and logback. It is purely annotation driven, and has no XML configuration files. Currently, users must clone the git repository

RE: Wicket jQuery Validator integration

2012-02-29 Thread Evan Sable
Hi Zac, this sounds great - I would be very appreciative if you make this code public, and I imagine it would be useful for many. I was just about to take a look at the wicketstuff-client-and-server-validation project which seems to be a similar idea, but it would be great to check out what you

Migrating to wicket 1.5

2012-02-29 Thread Douglas Ferguson
I was reading the migration doc and I'm not sure how I would migrate this to 1.5: WebRequest webRequest = (WebRequest) RequestCycle.get().getRequest(); HttpServletRequest httpServletRequest = (HttpServletRequest)webRequest.getContainerRequest();

Re: Migrating to wicket 1.5

2012-02-29 Thread Douglas Ferguson
Just found another one: What did AbortException get replaced with? Douglas On Feb 29, 2012, at 10:44 PM, Douglas Ferguson wrote: I was reading the migration doc and I'm not sure how I would migrate this to 1.5: WebRequest webRequest = (WebRequest)

Re: Migrating to wicket 1.5

2012-02-29 Thread Dan Retzlaff
Douglas, Regarding javascript references: instead of adding a header contributor, have your component override renderHead(IHeaderResponse response) and use response.renderJavaScriptReference(). Regarding AbortException: instead of grabbing the servlet response, writing to it immediately, and

Re: Migrating to wicket 1.5

2012-02-29 Thread Douglas Ferguson
See below... On Feb 29, 2012, at 11:49 PM, Dan Retzlaff wrote: Douglas, Regarding javascript references: instead of adding a header contributor, have your component override renderHead(IHeaderResponse response) and use response.renderJavaScriptReference(). Thanks! Regarding

Re: Multi Tab and Session

2012-02-29 Thread Martin Grigorov
On Wed, Feb 29, 2012 at 8:10 PM, Dan Retzlaff dretzl...@gmail.com wrote: Your description is clear, thank you. I'm not certain that the background thread's reference to the Session is valid outside of the servlet request. I would verify your assumption by logging the session's object ID when

Re: Multi Tab and Session

2012-02-29 Thread Martin Grigorov
2012/2/29 Andre Schütz andre-p...@gmx.de: Hi, I could identify the cause of the problem, but still have no solution. I set some breakpoints and made some output messages to trace the system. The following thinks happened: (1) I submit a search in Tab1. The search word will be passed as

Re: java.lang.IllegalStateException: Can't call write(CharSequence) after write(byte[]) has been called.

2012-02-29 Thread Martin Grigorov
On Wed, Feb 29, 2012 at 11:34 PM, Pierre Goupil goupilpie...@gmail.com wrote: Sure. But Martin is just telling you to use this as a code example. Right. See how DownloadLink schedules a new IRequestHandler that cares to deliver a file as a byte[]. Regards, Pierre On Wed, Feb 29, 2012 at

onException() 1.5

2012-02-29 Thread Douglas Ferguson
I want to redirect to an error page when there is an Exception. I see that there is a RedirectRequestHandler, but this only allows you to redirect to url via string literal. I want to redirect to a construction Page. I was grasping at straws and tried this and no dice..

Re: Wicket/Spring Boilerplate

2012-02-29 Thread Martin Grigorov
Hi, Thanks for sharing it! Here are some ideas: https://github.com/limone/wicket-spring-boilerplate/blob/master/src/main/resources/archetype-resources/src/main/java/HomePage.java#L25 Better override #renderHead(IHeaderResponse response) and use 'response.renderXYZ()'

Re: onException() 1.5

2012-02-29 Thread Martin Grigorov
On Thu, Mar 1, 2012 at 9:46 AM, Douglas Ferguson the...@gmail.com wrote: I want to redirect to an error page when there is an Exception. I see that there is a RedirectRequestHandler, but this only allows you to redirect to url via string literal. I want to redirect to a construction Page.