Re: ATOM display in wicket?

2011-10-13 Thread Peter Karich
Hi, I'm using it with wicket 1.4.18. Not sure if it works or exists for 1.5 For 1.4 this intro was useful (with my comment there): http://it-essence.xs4all.nl/roller/technology/entry/rss_feeds_with_wicket_and Regards, Peter. Is wicketstuff-rome still a usable package with recent Wicket

Re: How to attach treelink to pages

2011-10-13 Thread Martin Grigorov
See the source of this application: http://www.wicket-library.com/wicket-examples/navomatic/ On Thu, Oct 13, 2011 at 4:33 AM, pen praveen...@yahoo.com wrote: Hi all, I am building a tree component, with the list of pages,  root      -Page1      -page2      -page3 onclick it should

Re: Detect Connection speed with Wicket or something similar

2011-10-13 Thread Martin Grigorov
I think you need to do download of a file to get this measure. E.g. onDomReady you fire an ajax request back to the server to a predefined mount path which will init the download of relatively big file. When the ajax request ends you need to send a second one with the time needed to do the first

Re: missing page

2011-10-13 Thread Martin Grigorov
Wicket 1.5: org.apache.wicket.session.ISessionStore.getAttribute(Request, String) On Wed, Oct 12, 2011 at 8:51 PM, Miroslav F. mir...@seznam.cz wrote: Thanks Martin, finaly my java code is: public PageNotFound(PageParameters params) {        ServletWebRequest servletWebRequest =

Re: ModalWindow, IFrame and source

2011-10-13 Thread Martin Grigorov
This is improved in 1.5.x. You are recommended to upgrade. On Wed, Oct 12, 2011 at 8:52 PM, Nelson Segura nsegu...@gmail.com wrote: Hello everyone: Looking back at issue: https://issues.apache.org/jira/browse/WICKET-2207 I noticed that the fix was done against certain version of IE. In

job

2011-10-13 Thread moèz ben rhouma
searching for someone who is familiar with Wicket for a 4+ month contract in San Antonio, Texas. If you or anyone you know is interested please message me or email me at ro...@millgroupusa.com. -- Cdt Moèz

Re: jqWicket or wiQuery

2011-10-13 Thread mk
Martin Grigorov-4 wrote: Both Wiquery and jqWicket provide integration with JQuery UI, not plain JQuery. Wicket core may provide some abstractions to make integrations with JQuery UI at some later point. JQWicket provides much more than only JQuery UI integration. It delivers a

Re: Recommended way for wicket:for and markupIDs

2011-10-13 Thread Martin Grigorov
wicket:for works as IComponentResolver, i.e. while rendering the final markup Wicket will see a ComponentTag with the special 'wicket:for' attribute and will transform it to label for= Wicket can set automatically the this flag for and actually it does it: if (!component.getOutputMarkupId())

Re: Unit Testing Application with custom HttpServletResponse

2011-10-13 Thread Jan Ferko
I found out solution for this by overriding createRequestCycle() in WicketTester. @Override public WebRequestCycle createRequestCycle() { final WebRequestCycle mockCycle = super.createRequestCycle(); final MockHttpServletRequest mockRequest = new

Only the first TextField in a repetition gets correct OnChangeAjaxBehavior with 1.5.1

2011-10-13 Thread Anders Peterson
Hi, Upgrading to wicket 1.5.1 from 1.4.18 my ajax updates stopped working. I have a page with a form. Inside the form there is a repetition (ListView) that among other things creates a text field for each item (ListItem). Each of those text fields has an OnChangeAjaxBehavior set that should

Re: Only the first TextField in a repetition gets correct OnChangeAjaxBehavior with 1.5.1

2011-10-13 Thread Andrea Del Bene
Hi, can you attach the code you use to initialize ListView? Hi, Upgrading to wicket 1.5.1 from 1.4.18 my ajax updates stopped working. I have a page with a form. Inside the form there is a repetition (ListView) that among other things creates a text field for each item (ListItem). Each of

RE: Detect Connection speed with Wicket or something similar

2011-10-13 Thread Brown, Berlin [GCG-PFS]
Do you have a little bit more pseudocode. And I want this to be transparent as part of the application, E.g. I want the user to visit the home page and then we calculate the speed and log it. MyHomePage extends Page { public String onDomReady() { return wicketAjaxGet('/theFile');

Re: Only the first TextField in a repetition gets correct OnChangeAjaxBehavior with 1.5.1

2011-10-13 Thread Anders Peterson
Here the (simplified) code that creates the ListViev, TextFields and Label. /Anders final MyPageForm tmpForm = new MyPageForm(ID.FORM); this.add(tmpForm); final ContextLabelNumber tmpTotalWeightsLabel = new ContextLabelNumber(ID.TOTAL_WEIGHTS, new

RE: Forwarding in 1.5 not working like in 1.4 [Fixed - was using older 1.5 jars]

2011-10-13 Thread Chris Colman
After creating a QuickStart and not being able to reproduce the problem I discovered that my original app was linking with an earlier 1.5 snapshot. Once I linked with the latest snapshot jars it magically worked - yeehah! -Original Message- From: Chris Colman

Re: Only the first TextField in a repetition gets correct OnChangeAjaxBehavior with 1.5.1

2011-10-13 Thread Andrea Del Bene
I've tried to reproduce your condition in a quickstart. The Java code is the following: ListString itemList = Arrays.asList(new String[]{red, blue, green, yellow}); final Label label; add(label = new Label(label, )); label.setOutputMarkupId(true);

Re: How to attach treelink to pages

2011-10-13 Thread pen
thanks Martin for quick response, my question is how to do the same thing in the nested tree component, I have looked at the wicket examples but none of them have what I am looking. They have basic nested tree component hyperlink, but on clicking the page link, it should navigate to respective

Re: Recommended way for wicket:for and markupIDs

2011-10-13 Thread Igor Vaynberg
On Thu, Oct 13, 2011 at 2:08 AM, Martin Grigorov mgrigo...@apache.org wrote: wicket:for works as IComponentResolver, i.e. while rendering the final markup Wicket will see a ComponentTag with the special 'wicket:for' attribute and will transform it to label for= Wicket can set

Re: Recommended way for wicket:for and markupIDs

2011-10-13 Thread Matthias Keller
On 2011-10-13 17:52, Igor Vaynberg wrote: On Thu, Oct 13, 2011 at 2:08 AM, Martin Grigorovmgrigo...@apache.org wrote: wicket:for works as IComponentResolver, i.e. while rendering the final markup Wicket will see a ComponentTag with the special 'wicket:for' attribute and will transform it

Re: Recommended way for wicket:for and markupIDs

2011-10-13 Thread Bas Gooren
Wicket will automatically use your id if you specify one in the markup. So if you have id=xyz in the markup, wicket will not overwrite it. In other words: specify whatever ID you need so you can access the correct tag from javascript. Op 13-10-2011 21:34, schreef Matthias Keller: On

Re: ModalWindow, IFrame and source

2011-10-13 Thread Nelson Segura
Hey, thanks. I am planning to upgrade to 1.5.x in our .next release. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org