Re: suggesting alternative to IndicatingAjaxFallbackLink-class for just changing pointer/cursor

2007-12-23 Thread Newgro

Hello Kirk,

im looking for a solution you suggested
http://www.nabble.com/How-can-i-present-a-busy-component-to14462974.html
Click here 

I tried your link but my cursor is not changing. Can you help me out here? I
use FF 2.0.0.11

ProgressPointerAjaxFallbackLink aFogLink = new
ProgressPointerAjaxFallbackLink(aFogLink) {
  @Override
  public void onClick(AjaxRequestTarget pTarget) {
new Thread() {
@Override
public void run() {
  synchronized (this) {
try {
  System.out.println(Start);
  wait(8000);
  System.out.println(Stop);
} catch (InterruptedException e) {
  e.printStackTrace();
}
  }
}
  }.start();
System.out.println(target added);
pTarget.addComponent(this);
  }
};
aFogLink.setOutputMarkupId(true);
add(aFogLink);

-- 
View this message in context: 
http://www.nabble.com/suggesting-alternative-to-IndicatingAjaxFallbackLink-%3Eclass-for-just-changing-pointer-cursor-tp14400523p14478193.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [OT] Merry Christmas to the wicket community

2007-12-23 Thread Francisco Diaz Trepat - gmail
Thanks,
Happy Holidays.

f(t)

On Dec 22, 2007 4:09 AM, Jonathan Locke [EMAIL PROTECTED] wrote:



 You're welcome.


 Newgro wrote:
 
  I had alot fun with you this year. Wicket seems to become a real
 important
  framework (Maybe it is already :-). I'm new to web-development and i
 tried
  a
  bit with jsf, jsp, and and and. But since i found wicket, it's realy fun
  to
  create webapplications.
 
  All i want to say is - thanks to everyone who helped us out from the
 wood.
  This project is one of the best managed and supported one i saw until
 now.
  I
  hope you all have a busy santa and a happy new year.
 
  CU next year
  Per
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

 --
 View this message in context:
 http://www.nabble.com/-OT--Merry-Christmas-to-the-wicket-community-tp14460734p14466988.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: suggesting alternative to IndicatingAjaxFallbackLink-class for just changing pointer/cursor

2007-12-23 Thread Per Newgro
Sorry was my fault. The Thread was wrong. I use now
try {
  Thread.sleep(2500);
} catch (InterruptedException e) {
  e.printStackTrace();
}

And so everything works as expected.

Thanks
Per

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: IE7, loose.dtd, and the default Wicket error pages

2007-12-23 Thread Niels Bo

I see the same in IE6 after updating from 1.3.0-rc1 to 1.3.0-rc2.
I belive it it caused by the license comment placed before the DOCTYPE tag
in the page markup.
See:
https://issues.apache.org/jira/browse/WICKET-1241
https://issues.apache.org/jira/browse/WICKET-1241 

Niels
 

Kirk Israel-2 wrote:
 
 So IE7 seems to choke on the default Wicket error pages (such as time
 out) because it doesn't like the --s inside of
 http://www.w3.org/TR/html4/loose.dtd
 
 Our work around was to override the pages on a case per case basis:

 getApplicationSettings().setPageExpiredErrorPage(TimeoutPage.class);
 
 I don't know if there's fingerpointing of IE7 vs w3.org about this.
 Being a pragmatic developer with street roots, I greatly dislike a
 decent error page with a link to the front of the site being replaced
 with an ugly can't parse the XML page, so I was wondering who will
 bend first, IE7, w3.org, or Wicket? And is there another more
 generalized solution to this problem?
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/IE7%2C-loose.dtd%2C-and-the-default-Wicket-error-pages-tp14461685p14481357.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wizard and Upload Form

2007-12-23 Thread Igor Vaynberg
put the upload component into its own form...

-igor


On Dec 23, 2007 12:21 PM, BatiB80 [EMAIL PROTECTED] wrote:

 Hi,

 I have a Wizard containg of several steps. In one step I have different
 form-components. I additionally added a FileUploadField and a Button to load
 the file up. The handing should be like the follwing: The user must fill out
 the form and can add as many pictures as he want.

 That means, each time pressing the Upload-Button only the File-Upload should
 be processed. When pressing the Next-Button of the Wizard all the other
 components should be processed. Problem is: If I add a submit button the
 hole form is beeing processed, meaning when pressing this upload button all
 form-components are validated and the error messages are shown.

 Does anybody know how to handle this correctly???
 Thanks in advance,
 Sebastian
 --
 View this message in context: 
 http://www.nabble.com/Wizard-and-Upload-Form-tp14481506p14481506.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wizard and Upload Form

2007-12-23 Thread BatiB80

I already tried so but it didn't work. I found this post:

http://www.nabble.com/File-Upload-inside-a-Wizard--td10272971.html#a10334530
http://www.nabble.com/File-Upload-inside-a-Wizard--td10272971.html#a10334530 

That's why I added it to the same form... 
-- 
View this message in context: 
http://www.nabble.com/Wizard-and-Upload-Form-tp14481506p14481649.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Components questions

2007-12-23 Thread Artur W.


neo anderson wrote:
 
 Thanks your reply. I still have one question. If I want to achieve the
 effect as following html code in Wicket. What should I do? Thank you very
 much.
 
 table
 
 !-- beg --
 
 tr
 
 td rowspan=4date/td
 
 

You could try org.apache.wicket.behavior.AttributeAppender.


Artur

-- 
View this message in context: 
http://www.nabble.com/Components-questions-tp14470326p14485150.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]