Re: TinyMCE in ModalWindow

2010-11-02 Thread 蔡茂昌
i know that TinyMCE can only work in page , can this help you. 2010/10/19 Brad Grier brad.gr...@salusnovus.com I've implemented TinyMCE in my app and all is well with one exception. I can't get it to work in a ModalWindow (TinyMCE works the first time but subsequently opens in an blank,

Re: wicket-ajax header from url?

2010-11-02 Thread Frank van Lankvelt
well, the two kinds of ajax requests differ; the WebRequest#isAjax method returns true for wicket-ajax, but false for non-wicket-ajax requests. The 'wicket-ajax' request has the Wicket-Ajax header, the other does not. So I should have said that the first (locking) request was non-wicket-ajax;

Re: Really basic help...

2010-11-02 Thread Martijn Dashorst
Did you check your browser settings? Often auto-fill will fill in the fields. Martijn On Mon, Nov 1, 2010 at 3:44 PM, adam.gibbons adam.s.gibb...@gmail.com wrote: Hi there! I'm extreamly new to Whicket, trying to put together my first sample application based on the AuthenticatedWebSession

FileUpload in ModalWindow

2010-11-02 Thread Stefan Lindner
Does anybody use Ajax FileUpload in ModelWindow since Wicket 1.4.10? It does not work in 1.4.12 and 1.4.13. I did not see any significatn change in ChangeLog for this releases. Stefan

BrowserInfoPage issues.

2010-11-02 Thread Michał Letyński
Hi. I found two problems while using wicket BrowserInfoPage. 1) Browser page can be shown for couple of seconds when page to which it redirects is heavy. Browser page has english hardcoded label If you see this, it means that both javascript and meta-refresh are not support by your browser

RE: FileUpload in ModalWindow

2010-11-02 Thread Stefan Lindner
To make it more clear: FileUpload with ProgressBar does not work at all for me. Not in FF not in IE. Without ProgressBar everything works well. This is a Problem since 1.4.11. In 1.4.10 it works well. Stefan

how to pass initial request parameters with WicketTester

2010-11-02 Thread Stefan . Holzmueller
Hello, we are wondering about a valid test setup - perhaps somebody is able to help us with it. Our approaches to write a test failed because our WebApplication's newSession() seem to be called whenever we create a WicketTester and before we are able to set any request parameters. Our setting

Re: Problems displaying a PDF from stream

2010-11-02 Thread Alex Zeit
Thank you very much Stefan, it works perfectly! 2010/10/29 Stefan Lindner lind...@visionet.de How does your trigger look like? I mean the a or button or input type=submit element? Does it trigger a page refresh, means does it start a request tot he server? Then you still have a problem with

Re: how to pass initial request parameters with WicketTester

2010-11-02 Thread Martin Grigorov
Try with org.apache.wicket.util.tester.BaseWicketTester.startPage(ClassC, PageParameters) Put all parameters in the PageParameters instance On Tue, Nov 2, 2010 at 1:14 PM, Stefan.Holzmueller stefan.holzmuel...@brandad-systems.de wrote: Hello, we are wondering about a valid test setup -

AW: how to pass initial request parameters with WicketTester

2010-11-02 Thread Stefan . Holzmueller
Hello again, thanks for the response. And I'm sorry that the code snippet got messed up somehow. Anyways, the problem is that the request parameter is strictly required (we throw an exception if it is not there). So we want to make sure that there is a non-null parameter when starting a new

Re: Problems displaying a PDF from stream

2010-11-02 Thread Alex Zeit
Sorry Stefan, I restarted Firefox and checked again - it does not work :-( 2010/11/2 Alex Zeit zeita...@googlemail.com Thank you very much Stefan, it works perfectly! 2010/10/29 Stefan Lindner lind...@visionet.de How does your trigger look like? I mean the a or button or input type=submit

RadioGroup bug?

2010-11-02 Thread Martin Makundi
Hi! Is there a resolution to this bug/issue listviews with setreuseitems=true but with radiochoice have some problems: * http://www.mail-archive.com/users@wicket.apache.org/msg06560.html * http://apache-wicket.1842946.n4.nabble.com/RadioGroup-test-fails-td1912239.html *

Re: flot examples

2010-11-02 Thread Ivana
Hi Misha, The short answer is no, you cannot use more then one FlotPanel on a page. Referencing and sizing problems prevent the current implementation from showing more then one graph. But you can roll your own, and make it so you can have as many as you like. FlotPanel combines the script and

flot and IE7

2010-11-02 Thread Ivana
I would very much like to know why IE chooses to show me the javascript instead letting it draw the chart. It has the canvas element in one FlotPanel (not in the second?!) but it is completely empty. The second FlotPanel has no canvas and simply shows the underlying javascript. Sigh. --

Re: wicket-ajax header from url?

2010-11-02 Thread Igor Vaynberg
the url parameter is there only as a workaround for when we cannot set the header. i think the only usecase is for fileuploads where we have to set an ajax url on iframe's src attribute. the header is the preferred way to do this and you can set it yourself i you need or use wicket's ajax js to

Re: BrowserInfoPage issues.

2010-11-02 Thread Igor Vaynberg
feel free to create the jira issues, and hopefully provide patches -igor 2010/11/2 Michał Letyński mletyn...@consol.pl: Hi. I found two problems while using wicket BrowserInfoPage. 1) Browser page can be shown for couple of seconds when page to which it redirects is heavy.  Browser page has

Re: wicket 1.4.12 and wicket-push 1.4.8

2010-11-02 Thread Sebastian
As part of wicketstuff 1.4.13 we have the new implementation released now. give it a try and also check the examples since the API has changed. Regards, seb On 01.11.2010 19:35, fachhoch wrote: I am using wicket 1.4.12 and wicket-push 1.4.8 , will this combination work fine or can cause any

Global Ajax indicator doesn't hide for AjaxEditableChoiceLabel updates

2010-11-02 Thread Anthony DePalma
I was wondering if anyone has experienced this issue, or has any advice. All other ajax calls work fine with the IAjaxIndicatorAware interface on my abstract page, the loading div displays and hides after the request is finished, however, when using the onSubmit of an AjaxEditableChoiceLabel to

[announce] wicketstuff-core 1.4.13 released

2010-11-02 Thread Michael O'Cleirigh
Hello, Following the release of wicket 1.4.13 I've cut a matching release for wicketstuff-core. The artifacts have been promoted and synced into the maven central repository. They can be retrieved like this: dependency groupIdorg.wicketstuff/groupId artifactIdpush/artifactId

Re: how to pass initial request parameters with WicketTester

2010-11-02 Thread Kent Tong
Any clue on how to pass the initial request parameters to WicketTester? The productive code seems to work (checked that with some logging output), but we'd like to create a valid test case. You may try http://wicketpagetest.sourceforge.net which will work for your case as it doesn't change