[Wicket-user] Showing an alert

2007-08-02 Thread Federico Fanton
Hi everyone! I'm sorry, I'm looking for a way to show an alert dialog when a condition is met.. For example, the user fills in a search form, submits it and if there's no data matching the query, a no data found! should pop up.. I'd like to use something like the alert JavaScript function, but

Re: [Wicket-user] Redirecting top frame

2007-07-26 Thread Federico Fanton
On Thu, 26 Jul 2007 11:11:38 +0200 Federico Fanton [EMAIL PROTECTED] wrote: meta refresh output scriptwindow.top.location='http://redirected-url.com'/script/ ? Is a nested script tag allowed inside a meta tag? Also, I tried looking up refresh inside the HTML4 specs on www.w3.org

Re: [Wicket-user] Redirecting top frame

2007-07-26 Thread Federico Fanton
On Thu, 26 Jul 2007 02:45:44 -0700 (PDT) Erik van Oosten [EMAIL PROTECTED] wrote: scriptwindow.top.location='url' .etc Now I see, thanks! Sorry for the OT :/ Many thanks again! - This SF.net email is

Re: [Wicket-user] Redirecting top frame

2007-07-26 Thread Federico Fanton
On Wed, 25 Jul 2007 10:16:27 -0700 Igor Vaynberg [EMAIL PROTECTED] wrote: write your own page, that works like redirect page, but instead of doing meta refresh output scriptwindow.top.location='url' I'm sorry, I think I'm missing something.. Do you mean I should write a page like !DOCTYPE

[Wicket-user] Handling exceptions

2007-07-26 Thread Federico Fanton
Hi everyone! I was wondering if there's a best practice for handling exceptions in a Wicket application.. I'm implementing an IDataProvider for a DataView, and I see that this interface doesn't throw any exception, so I'd guess that if something happens inside - say - iterator() that throws an

Re: [Wicket-user] The future of wicket-user@lists.sourceforge.net

2007-07-26 Thread Federico Fanton
On Wed, 25 Jul 2007 21:05:04 +0200 Martijn Dashorst [EMAIL PROTECTED] wrote: With great pleasure I can announce that we have finally established one of the last hurdles in our migration to Apache: we have our own user list at the Apache Wicket project. I'm sorry, what about gmane.org

[Wicket-user] Redirecting top frame

2007-07-25 Thread Federico Fanton
Hi everyone! I'm sorry, I'm having a little problem and I'd like to ask for help.. I fear this is not strictly Wicket-related, but maybe there's some part of the API that I'm missing ^^; (which is not impossible at all X-) ) I have a non-Wicket application that connects to a Wicket one via an

[Wicket-user] Passing parameters to a page in WicketTester

2007-07-19 Thread Federico Fanton
Hi everyone! I'm sorry, I'm looking for a little clue.. I have this simple testcase: public void testForm(){ WicketTester tester = new WicketTester(); tester.startPage(MyPage.class ); tester.assertNoErrorMessage(); } And this simple page: public class MyPage extends

Re: [Wicket-user] Passing parameters to a page in WicketTester

2007-07-19 Thread Federico Fanton
On Thu, 19 Jul 2007 07:25:47 -0700 (PDT) jonaqua [EMAIL PROTECTED] wrote: but this was in the javadoc for WicketTester D'oh!! I'm sorry :( Instead of tester.startPage(pageClass), we define a ITestPageSource to provide testing page instance for WicketTester. I see.. Many thanks, you've been

Re: [Wicket-user] Mixing Wicket in JSF

2007-07-09 Thread Federico Fanton
On Sat, 2007-07-07 at 16:51 -0700, Eelco Hillenius wrote: I have an existing JSF webapp which I'd like to extend (=build new pages) with Wicket.. Maybe this might give some ideas? http://herebebeasties.com/2007-03-01/jsp-and-wicket-sitting-in-a-tree/ I'll try it right now, many thanks :)

Re: [Wicket-user] Can not resize iframe in FireFox to 100%. HELP!

2007-07-09 Thread Federico Fanton
On Mon, 2007-07-09 at 06:19 -0700, westpine wrote: Hi... I use iframe on my page iframe width=100% height=100% wicket:id=content src=[actual url goes here]/ Like this. In IE and Opera everything is OK. But in FF this iframe just couple hundreds pixels height and i have to scroll it's

[Wicket-user] Mixing Wicket in JSF

2007-07-06 Thread Federico Fanton
Hi everyone! I'm sorry, I'm looking for a hint on the following problem.. I have an existing JSF webapp which I'd like to extend (=build new pages) with Wicket.. The application is structured so that every page is JSF-generated with a dynamic menu on top and the selected functionality at the