Betr.: Re: Modalwindow with confirm box on close button

2010-10-28 Thread Marieke Vandamme
Hello, Thanks for the response! I already use jquery in my project for other stuff, so I would be a solution. I hoped there was a standard fitted solution in wicket. We override 'getEventHandler' often to override the onclick for a behavior, so why can't there be something like that to

Re: Wicket 1.5 and GAE

2010-10-28 Thread Alex Objelean
Issue created: https://issues.apache.org/jira/browse/WICKET-3138 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-and-GAE-tp3016185p3016762.html Sent from the Users forum mailing list archive at Nabble.com.

RestartResponseAtInterceptPageException / redirectToInterceptPage with PageParameters

2010-10-28 Thread Vishal Popat
Hi all, I am currently using wicket-auth-roles for all pages required authorization which is working great. I have a page where information is shown to the user but to see further information they are required to login. This page uses IndexedParamUrlCodingStrategy for the URL. I haven't to

Re: NoClassDefFoundError on app undeployment

2010-10-28 Thread Marek Pribyl
thanks martin that's really informative. I thought that this funny thing is tomcat related, but wasn't sure... On Wed, 2010-10-27 at 17:19 +0200, Martin Grigorov wrote: See this discussion:

Re: Problem with setResponsePage from a thread

2010-10-28 Thread jcgarciam
From the thread you can't request anything to the application server, since the original request that initiates the threads is already gone, what you can do is actually create an abstract behavior with a timer that checks the server (lets say every 5 seconds) for an status and force a

Problems displaying a PDF from stream

2010-10-28 Thread Alex Zeit
While trying to display a PDF document from stream following problems arrise: IE7: Resource can not be displaied at all. Firefox 3.6.12: PDF is displaied but if Chronk is cleared in Firefox while document is open then it cannot be displaied again. It is possible only after restarting Firefox. No

AW: Problems displaying a PDF from stream

2010-10-28 Thread Stefan Lindner
Do you want to open the PDF in a separate window? Klick on some button and open a new browser window with pdf? Stefan -Ursprüngliche Nachricht- Von: Alex Zeit [mailto:zeita...@googlemail.com] Gesendet: Donnerstag, 28. Oktober 2010 15:14 An: users@wicket.apache.org Betreff: Problems

Re: Problems displaying a PDF from stream

2010-10-28 Thread Alex Zeit
Yes 2010/10/28 Stefan Lindner lind...@visionet.de Do you want to open the PDF in a separate window? Klick on some button and open a new browser window with pdf? Stefan -Ursprüngliche Nachricht- Von: Alex Zeit [mailto:zeita...@googlemail.com] Gesendet: Donnerstag, 28. Oktober 2010

AW: Problems displaying a PDF from stream

2010-10-28 Thread Stefan Lindner
Try this: public class MyResourceStreamWriter extends AbstractResourceStreamWriter { private static final long serialVersionUID = 1L; public MyResourceStreamWriter() { } @Override public void write(final

Re: Problems displaying a PDF from stream

2010-10-28 Thread Alex Zeit
Thanks a lot Stefan I will try it right now 2010/10/28 Stefan Lindner lind...@visionet.de Try this: public class MyResourceStreamWriter extends AbstractResourceStreamWriter { private static final long serialVersionUID = 1L; public

Re: Problems displaying a PDF from stream

2010-10-28 Thread Alex Zeit
Now it works with IE and this is most important thing. Thank you very much! However the problem with Firefox remains. After clearing chronik while Pdf document is open if I click the link comes page expired, after refreshing the main page with link if I click link again comes empty page.

AW: Problems displaying a PDF from stream

2010-10-28 Thread Stefan Lindner
What do you mean with After clearing chronik? Does this mean that the session cookie is lost after After clearing chronik? You may take a look at the generated HTML: Onclick=.?wicket:interface=:5:.:pdfIcon:pdf::ILinkListener:: This refers to a version oft he page that

Wicket product on set-top boxes

2010-10-28 Thread nino martinez wael
Hi Im working on a product where we are pushing a wicket site/product to some set-top boxes. And I want to make the displayed page more resilient, so if the server for some reason are down or the box are unable to connect it will keep trying to connect until successful. Also if I hit the

Re: Wicket product on set-top boxes

2010-10-28 Thread Jeremy Thomerson
On Thu, Oct 28, 2010 at 12:40 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Hi Im working on a product where we are pushing a wicket site/product to some set-top boxes. And I want to make the displayed page more resilient, so if the server for some reason are down or the box

Re: Wicket product on set-top boxes

2010-10-28 Thread Martin Makundi
Hi! Yes, we did this kind of settop with wicket. We use ajax timer to update page and keep session alive. The originating page problem we had to resolve using a cookie because wicket does not support multi homing. ** Martin 2010/10/28 nino martinez wael nino.martinez.w...@gmail.com: Hi Im

Re: Wicket product on set-top boxes

2010-10-28 Thread nino martinez wael
hehe.. Sometimes I do spell wrong usually when tired, angels are nice but was thinking of angle or perspective :) We are actually using ajax after the initial page so i'll go for some ajax intelligence, which was my initial idea. 2010/10/28 Jeremy Thomerson jer...@wickettraining.com On Thu,

Re: JFreeChart with clickable imagemap

2010-10-28 Thread jwray
Hi, A little late maybe but since I wrote that wiki page I've improved the code to use models and so be responsive to data changes. Here's a link to a gist providing a wicket component that allows a JFreeChart to be displayed with both tooltips and clickable entities.

Wicket scalability

2010-10-28 Thread Jan Luehr
Hello, I'm still trying to get into wicket - this time, I stumbled up on: http://javathoughts.capesugarbird.com/2008/01/year-of-wicket.html It says: The application was a management console for an enterprise application. It did not require high user traffic, so were weren't concerned about what

Re: Wicket scalability

2010-10-28 Thread Jeremy Thomerson
On Thu, Oct 28, 2010 at 3:54 PM, Jan Luehr mailinglists_in...@arcor.dewrote: Hello, I'm still trying to get into wicket - this time, I stumbled up on: http://javathoughts.capesugarbird.com/2008/01/year-of-wicket.html It says: The application was a management console for an enterprise

Disable button double-click without breaking Form.setDefaultButton

2010-10-28 Thread Alex Grant
Hello, I have had problems with users double-clicking the Finish button in one of our wizards, which caused duplicate objects to be created. So I want to prevent the (non-ajax) buttons from being clicked more than once. I found what I thought was a good solution, using a

Re: Updating inmethod grid from the server

2010-10-28 Thread Adz
Ah yes, it occurred to me last night that my implementation of equals for my object must be the problem, thanks for the help. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Updating-inmethod-grid-from-the-server-tp3015007p3018162.html Sent from the Users forum

Replacing markup generated by a Behavior

2010-10-28 Thread Clint Checketts
I have a Visitor that iterates through my forms and adds a Behavior that writes out to the Response a div and any feedback messages that belong to that component. This is really great because it gives me inline feedback panels. Here is the problem: if the component is ever updated via ajax, the

Re: Replacing markup generated by a Behavior

2010-10-28 Thread Jeremy Thomerson
On Thu, Oct 28, 2010 at 5:19 PM, Clint Checketts checke...@gmail.comwrote: I have a Visitor that iterates through my forms and adds a Behavior that writes out to the Response a div and any feedback messages that belong to that component. This is really great because it gives me inline feedback

Seeing sporadic ClassNotFoundExceptions after upgrading from 1.4.9 or 1.4.11

2010-10-28 Thread Anthony DePalma
I was wondering if this was a known issue, or if it is something specific to my application. I have made minimal changes besides upgrading to 1.4.12, and now I am seeing some of these logs appear (although I havent been able to reproduce them myself) 2010-10-27 14:36:05,070 ERROR [TP-Processor11]

Re: Disable button double-click without breaking Form.setDefaultButton

2010-10-28 Thread Alexander Morozov
Check this thread http://apache-wicket.1842946.n4.nabble.com/Preventing-double-click-of-AjaxButtons-in-ModalWindow-td2289480.html -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Disable-button-double-click-without-breaking-Form-setDefaultButton-tp3018140p3018370.html

RE: Disable button double-click without breaking Form.setDefaultButton

2010-10-28 Thread Alex Grant
Thanks, That was actually me asking that question. :) That worked perfectly for AjaxButtons, but what I'm trying to do now is disable double-click for non-ajax buttons. Alex -Original Message- From: Alexander Morozov [mailto:alexander.v.moro...@gmail.com] Sent: Friday, 29 October 2010

Re: Disable button double-click without breaking Form.setDefaultButton

2010-10-28 Thread Jeremy Thomerson
Do it in your form itself. For instance, you can save a boolean flag that tells you that the form has already been submitted and not accept a second submit, or whatever. On Thu, Oct 28, 2010 at 9:58 PM, Alex Grant alex.gr...@unimarket.comwrote: Thanks, That was actually me asking that

Re: Replacing markup generated by a Behavior

2010-10-28 Thread Clint Checketts
Elegant! I'd been trying to think of ways to add my own markup ID and piggyback off any render requests that redraw the component to trigger and render the feedback, just using the component markupId will work great! Instead of setOutputMarkupId(false), I'll detect that to decide to add the ID or