[flexcoders] Re: how do I freeze the users actions while data is loading

2007-11-16 Thread Mark
I guess sometimes the easy answer is the one we overlook. I don't know why I didn't think about using some kind of wait message or progress bar in a pop-up. Thanks. I have one last question about this. When do I destroy the pop-up? I'd like it to stay on until all the data has been parsed,

[flexcoders] Re: how do I freeze the users actions while data is loading

2007-11-16 Thread Josh VanderBerg
I tend to avoid modal dialogs if at all possible. Generally it's much better to display some sort of a non-modal status message, such as a progress meter, and disable those functions that the user shouldn't have access to while the data is loading. For example, a current application I am working

Re: [flexcoders] Re: how do I freeze the users actions while data is loading

2007-11-16 Thread Douglas Knudsen
this is cake in a framework like Cairngorm. Setup a command, event, etc. one event would be 'showLoading' which has a command that increments a variable by 1 and if this variable 0, shows the popup. Another event is called say 'hideLoading'. It decrements this variable, if this variable is 1,

RE: [flexcoders] Re: how do I freeze the users actions while data is loading

2007-11-16 Thread Randy Martin
_ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen Sent: Friday, November 16, 2007 10:52 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: how do I freeze the users actions while data is loading this is cake in a framework like Cairngorm

[flexcoders] Re: how do I freeze the users actions while data is loading

2007-11-15 Thread johantrax
How about creating a little popup that shows 'Loading..' ? Then let it close by the resulthandler. --jeetee --- In flexcoders@yahoogroups.com, Mark [EMAIL PROTECTED] wrote: I have a web service that's getting data to fill comboBoxes then the real data. This takes a few seconds. I'm using