Re: "Hourglass" during Ajax

2008-12-05 Thread Anton Veretennikov
Seems these methods are all acceptable, I'll try them all and choose which to use in which case. Thank you. On Fri, Dec 5, 2008 at 10:04 PM, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > This is just CSS hacking, I guess an iframe insertion is what is > necessary which is the usual hack for this

Re: "Hourglass" during Ajax

2008-12-05 Thread Martijn Dashorst
This is just CSS hacking, I guess an iframe insertion is what is necessary which is the usual hack for this type of stuff. Nothing more. Martijn On Fri, Dec 5, 2008 at 4:02 PM, jWeekend <[EMAIL PROTECTED]> wrote: > > Martijn, > > That's nice and it would be ideal to do it with CSS; that is what I

Re: "Hourglass" during Ajax

2008-12-05 Thread jWeekend
Martijn, That's nice and it would be ideal to do it with CSS; that is what I too wanted to do when I first thought about a "modal busy indicator". But, IE6 is, surprise surprise, the problem - the drop-downs still show through. Do you know of a way to fix that? ModalWindow window seems to just pu

Re: "Hourglass" during Ajax

2008-12-05 Thread Martin Makundi
Combine it nicely with generic busy indicator: http://cwiki.apache.org/WICKET/generic-busy-indicator-for-both-ajax-and-non-ajax-submits.html Just make the div pick the size from the screen and set it on top with cursor type wait. ** Martin 2008/12/5 Martijn Dashorst <[EMAIL PROTECTED]>: > Why no

Re: "Hourglass" during Ajax

2008-12-05 Thread Martijn Dashorst
Why not make a div the ajax indicator, and let your page implement ajaxindicatoraware? Wicket Quickstart Archetype Homepage Show veil Can't touch this package com.mycompany; import org.apache.wicket.PageParameters; import org.apache.

Re: "Hourglass" during Ajax

2008-12-05 Thread jWeekend
Cristi, Right, but it's non-trivial to use the veil for this - you'll need to http://javathoughts.capesugarbird.com/2008/03/ajax-button-with-overlay-div-and-wait.html do some work to get it to do just what you need. Also, iirc, veil does not address the IE6 problem with drop-downs being still c

Re: "Hourglass" during Ajax

2008-12-05 Thread Cristi Manole
[but if you need to _make sure_ the user doesn't click anything while the request is processing use the viel] On Fri, Dec 5, 2008 at 10:27 AM, jWeekend <[EMAIL PROTECTED]>wrote: > > Anton, > > See IndicatingAjaxLink (and other, similarly named components) and > IndicatingAjaxButton. > > Regards -

Re: "Hourglass" during Ajax

2008-12-05 Thread jWeekend
Anton, See IndicatingAjaxLink (and other, similarly named components) and IndicatingAjaxButton. Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk Anton Veretennikov wrote: > > Hello Wicket users, > > I would like to know how to show some hourglass in a "Wicket way" > during Aj

Re: "Hourglass" during Ajax

2008-12-05 Thread Cristi Manole
take a look on viel in wicketstuff, if it's still available. i used it, it's nice and easy. On Fri, Dec 5, 2008 at 10:04 AM, Anton Veretennikov < [EMAIL PROTECTED]> wrote: > Hello Wicket users, > > I would like to know how to show some hourglass in a "Wicket way" > during Ajax so user will not cl

"Hourglass" during Ajax

2008-12-05 Thread Anton Veretennikov
Hello Wicket users, I would like to know how to show some hourglass in a "Wicket way" during Ajax so user will not click something else. How to do this? Thank you - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman