Re: Veil behavior of wicketstuff-minis

2012-02-16 Thread matteus
I succeeded to solve my problem. I found the site https://cwiki.apache.org/WICKET/generic-busy-indicator-for-both-ajax-and-non-ajax-submits.html where shows an example of ajax and non ajax button to put the veil . Then I created the files. Css and. Js with these samples and placed in the same

Re: Veil behavior of wicketstuff-minis

2012-02-02 Thread matteus
Someone can help with the veil behavior, because until now I could not make it works. Thankss. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Veil-behavior-of-wicketstuff-minis-tp2228127p4352522.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Veil behavior of wicketstuff-minis

2012-01-26 Thread matteus
Hi, I managed to put the veil on my page after I execute a method, but I can not remove the veil. I used the class shown on the site http://grepcode.com/file/repo1.maven.org/maven2/org.wicketstuff/minis/1.4.17.1/org/wicketstuff/minis/veil/VeilResources.java and I can not remove. Someone could

Re: Veil behavior of wicketstuff-minis

2012-01-26 Thread Martin Grigorov
Show us how you use it. On Thu, Jan 26, 2012 at 12:39 PM, matteus matteu...@hotmail.com wrote: Hi, I managed to put the veil on my page after I execute a method, but I can not remove the veil. I used the class shown on the site

Re: Veil behavior of wicketstuff-minis

2012-01-26 Thread matteus
In my method I call this protected void onSubmit(AjaxRequestTarget target, Form? form) { form.add(new Veil()); target.addComponent(form); -- method to be execute ---

Re: Veil behavior of wicketstuff-minis

2010-05-26 Thread nmetzger
This is pretty easy to do. I added a veil to my page by implementing IAjaxIndicatorAware, adding the method getAjaxIndicatorMarkupId() and providing style definitions on the html side. Like this: public class MyPage extends WebPage implements IAjaxIndicatorAware{ public MyPage(){