Re: Veil on ajax which ends with redirect eventually

2015-04-15 Thread Martin Grigorov
the loading of the new page takes some time and during that time the JS of the current page is fully executed and that's why you see the old page without the veil for some time. I think it is OK to leave the veil (ajax indicator) in case of redirect for all cases. We can just raise a flag in JS when

Re: wait indicator not showing with veil for AjaxButton

2014-04-23 Thread msalman
was being used. But again, thanks for your help. Here is the way that I was able to make it work. myproject.gz http://apache-wicket.1842946.n4.nabble.com/file/n4665556/myproject.gz -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wait-indicator-not-showing-with-veil

Re: wait indicator not showing with veil for AjaxButton

2014-04-19 Thread Martin Grigorov
, Apr 17, 2014 at 4:56 AM, msalman mohammad_sal...@yahoo.com wrote: Any help please? Thanks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wait-indicator-not-showing-with-veil-for-AjaxButton-tp4665422p4665434.html Sent from the Users forum mailing list archive

Re: wait indicator not showing with veil for AjaxButton

2014-04-16 Thread msalman
Any help please? Thanks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wait-indicator-not-showing-with-veil-for-AjaxButton-tp4665422p4665434.html Sent from the Users forum mailing list archive at Nabble.com

wait indicator not showing with veil for AjaxButton

2014-04-15 Thread msalman
Hi, I am trying to show an wait indicator and a veil when an ajax button is showed. The veil works fine but despite all my effort the indicator is not working. Attached is a quick start of the project. My code is based on the code at this page: http://javathoughts.capesugarbird.com/2008/03

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 http://grepcode.com/file/repo1.maven.org/maven2/org.wicketstuff

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

Veil behavior of wicketstuff-minis

2010-05-23 Thread Kai Mütz
Hi, is there an example of the veil behavior of wicketstuff-minis. I want to try it but am not sure how to use it. Thanks, Kai - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail

veil

2010-01-29 Thread Douglas Ferguson
Implemented the veil and was disappointed to see that it shows up every time I click a link. Is it possible to have the veil be invisible unless the process it taking more the X seconds to respond? D/ - To unsubscribe, e

Re: veil

2010-01-29 Thread Martin Makundi
Hi! The best solution is to assign logic which links should show veil and which should not: Here is a pseudo example taken from http://cwiki.apache.org/WICKET/generic-busy-indicator-for-both-ajax-and-non-ajax-submits.html: if ((clickedElement.tagName.toUpperCase

RE: wicketstuff mini veil

2009-06-22 Thread Jing Ge (Besitec IT DEHAM)
Hello, Has anyone any ideas? Thanks Jing -Original Message- From: Jing Ge (Besitec IT DEHAM) [mailto:j...@besitec.com] Sent: Donnerstag, 18. Juni 2009 10:51 To: users@wicket.apache.org Subject: RE: wicketstuff mini veil Thanks for the replay. The label is just example code. You can

RE: wicketstuff mini veil

2009-06-18 Thread Jing Ge (Besitec IT DEHAM)
Thanks for the replay. The label is just example code. You can try doing anything in the onSubmit(..) method of the AjaxButton(). The point is that the button is disabled when Veil is used. Best regards! Jing --- -Original Message

wicketstuff mini veil

2009-06-17 Thread Jing Ge (Besitec IT DEHAM)
Hallo, I have checked out the source code and taken a look at the class Veil. I found the following code: public void bind(Component component) { super.bind(component); if (component != null

RE: wicketstuff mini veil

2009-06-17 Thread Jing Ge (Besitec IT DEHAM)
:15 To: users@wicket.apache.org Subject: wicketstuff mini veil Hallo, I have checked out the source code and taken a look at the class Veil. I found the following code: public void bind(Component component) { super.bind

RE: wicketstuff mini veil

2009-06-17 Thread Jing Ge (Besitec IT DEHAM)
); } catch (InterruptedException ex) { Logger.getLogger(HomePage.class.getName()).log(Level.SEVERE, null, ex); } } }; button.add(new Veil()); form.add(button); add(form); After the application is deployed and running, the ajax

Re: wicketstuff mini veil

2009-06-17 Thread Warren Bell
I don't know about the mini veil, but shouldn't your label and button be set up something like this: In the class add a member that is your model string and then modify it in in the AjaxButton#onSubmit(...) String modelString = ... final Label label = new Label(testLabel, new ModelString

Minis veil?

2008-09-20 Thread Nino Saturnino Martinez Vazquez Wael
How are the veil supposed to be used? I want to put a veil over a form once I submit it can I do that with the veil from minis? Im using the one from 1.3.. -- -Wicket for love Nino Martinez Wael Java Specialist @ Jayway DK http://www.jayway.dk +45 2936 7684

Re: Example of wicketstuff-minis' Veil

2008-06-27 Thread Nino Saturnino Martinez Vazquez Wael
] wrote: I need an example of wicketstuff-minis' veil behavior. I added this to one of my components but keep getting the error that the behavior is already bound to another component and cannot be reused. All I am doing is: Button button = new Button(test); button.add(new Veil

Re: Example of wicketstuff-minis' Veil

2008-06-13 Thread Igor Vaynberg
: wicketstuff-minis-1.3.0-SNAPSHOT.jar igor.vaynberg wrote: can you paste the stack trace please? are you using latest trunk? -igor On Tue, Jun 3, 2008 at 6:38 AM, nitinkc [EMAIL PROTECTED] wrote: I need an example of wicketstuff-minis' veil behavior. I added this to one of my

Re: Example of wicketstuff-minis' Veil

2008-06-13 Thread Nino Saturnino Martinez Vazquez Wael
: wicketstuff-minis-1.3.0-SNAPSHOT.jar igor.vaynberg wrote: can you paste the stack trace please? are you using latest trunk? -igor On Tue, Jun 3, 2008 at 6:38 AM, nitinkc [EMAIL PROTECTED] wrote: I need an example of wicketstuff-minis' veil behavior. I added this to one of my

Re: Example of wicketstuff-minis' Veil

2008-06-11 Thread nitinkc
paste the stack trace please? are you using latest trunk? -igor On Tue, Jun 3, 2008 at 6:38 AM, nitinkc [EMAIL PROTECTED] wrote: I need an example of wicketstuff-minis' veil behavior. I added this to one of my components but keep getting the error that the behavior is already bound

Re: Example of wicketstuff-minis' Veil

2008-06-11 Thread Igor Vaynberg
-1.3.0-SNAPSHOT.jar igor.vaynberg wrote: can you paste the stack trace please? are you using latest trunk? -igor On Tue, Jun 3, 2008 at 6:38 AM, nitinkc [EMAIL PROTECTED] wrote: I need an example of wicketstuff-minis' veil behavior. I added this to one of my components but keep getting

Re: Example of wicketstuff-minis' Veil

2008-06-04 Thread Nino Saturnino Martinez Vazquez Wael
I think I ran into that problem with veil too... Igor Vaynberg wrote: can you paste the stack trace please? are you using latest trunk? -igor On Tue, Jun 3, 2008 at 6:38 AM, nitinkc [EMAIL PROTECTED] wrote: I need an example of wicketstuff-minis' veil behavior. I added this to one of my

Re: Example of wicketstuff-minis' Veil

2008-06-04 Thread nitinkc
PROTECTED] wrote: I need an example of wicketstuff-minis' veil behavior. I added this to one of my components but keep getting the error that the behavior is already bound to another component and cannot be reused. All I am doing is: Button button = new Button(test); button.add(new Veil

Example of wicketstuff-minis' Veil

2008-06-03 Thread nitinkc
I need an example of wicketstuff-minis' veil behavior. I added this to one of my components but keep getting the error that the behavior is already bound to another component and cannot be reused. All I am doing is: Button button = new Button(test); button.add(new Veil()); form.add(button

Re: Example of wicketstuff-minis' Veil

2008-06-03 Thread Igor Vaynberg
can you paste the stack trace please? are you using latest trunk? -igor On Tue, Jun 3, 2008 at 6:38 AM, nitinkc [EMAIL PROTECTED] wrote: I need an example of wicketstuff-minis' veil behavior. I added this to one of my components but keep getting the error that the behavior is already bound

Wicketstuff-minis Veil

2007-08-21 Thread Federico Fanton
Hi everyone! I'm sorry, is there a screenshot of what the veil behavior looks like, somewhere? Many thanks! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Wicketstuff-minis Veil

2007-08-21 Thread Igor Vaynberg
why dont you just drop it into your project and see -igor On 8/21/07, Federico Fanton [EMAIL PROTECTED] wrote: Hi everyone! I'm sorry, is there a screenshot of what the veil behavior looks like, somewhere? Many thanks