Re: Add a ui lock page over the page while waiting for response

2009-05-07 Thread Vladimir K
ce(UIBlockerBehaviour.class, > "jquery.blockUI.js"); > > ... > -- View this message in context: http://www.nabble.com/Add-a-ui-lock-page-over-the-page-while-waiting-for-response-tp23407195p23427935.html Sent from the

Re: Add a ui lock page over the page while waiting for response

2009-05-07 Thread Matthias Keller
Hi Thanks for the input. I now used wicketstuff-jquery and wrote a custom behaviour which adds the code to my form. For later reference: public class UIBlockerBehaviour extends JQueryBehavior { private static final ResourceReference BLOCKUI_JS = new CompressedResourceReference(UIBlock

Re: Add a ui lock page over the page while waiting for response

2009-05-06 Thread nino martinez wael
Not as I remember, veil "just" makes it impossible to interact with a component.. Cant remember more.. I last time I ended up doing a simple component that blocks the entire screen... 2009/5/6 James Carman : > I thought the veil covered the whole screen.  If it's not, you could > easily do that b

Re: Add a ui lock page over the page while waiting for response

2009-05-06 Thread James Carman
I thought the veil covered the whole screen. If it's not, you could easily do that by adding a with a WebMarkupContainer that covers all the content of your page. On Wed, May 6, 2009 at 11:04 AM, nino martinez wael wrote: > I think the veil are just over a certain component, like only the > but

Re: Add a ui lock page over the page while waiting for response

2009-05-06 Thread nino martinez wael
I think the veil are just over a certain component, like only the button.. I think he are looking for a Either Modal or something more than Veil, there was an article somewhere about it.. 2009/5/6 James Carman : > There is a "veil" component in wicketstuff-minis, I believe.  That might help. > > O

Re: Add a ui lock page over the page while waiting for response

2009-05-06 Thread Serkan Camurcuoglu
you could use the jquery blockui plugin.. http://malsup.com/jquery/block/#demos James Carman wrote: There is a "veil" component in wicketstuff-minis, I believe. That might help. On Wed, May 6, 2009 at 10:30 AM, Linda van der Pal wrote: Back when I was programming in jsp I solved this b

Re: Add a ui lock page over the page while waiting for response

2009-05-06 Thread James Carman
There is a "veil" component in wicketstuff-minis, I believe. That might help. On Wed, May 6, 2009 at 10:30 AM, Linda van der Pal wrote: > Back when I was programming in jsp I solved this by disabling the button > after clicking it (because it would redirect after processing the data). Not > sure

Re: Add a ui lock page over the page while waiting for response

2009-05-06 Thread Linda van der Pal
Back when I was programming in jsp I solved this by disabling the button after clicking it (because it would redirect after processing the data). Not sure how I'd do such a thing with Wicket. Linda. Matthias Keller wrote: Hi We have a web form which does some very extensive backend communi

Add a ui lock page over the page while waiting for response

2009-05-06 Thread Matthias Keller
Hi We have a web form which does some very extensive backend communication requiring a lot of time. So usually after pressing 'submit', the UI is locked for 10-30 seconds. To avoid re-submission, we'd like to put some kind of ui-lock-page over the current page, stating 'Please wait' or someth