Hello everyone,First of all, I am sorry if I am posting in the wrong section. Maybe an admin can move my subject if he has to.Well, I would like to know if it is possible to set an animation when the user is waiting for a process.Actually, I have an UltraGridRow which is filled by the user. When he finished he can save what he did, but the save takes almost 5 secondes. That is why I was wondering if is it possible to display anything to tell the user he has to wait a bit.I was thinking to display a ring or anything which stands for a loading. Maybe there is a better to do it.Thank guys !
Hello,
What you could do is to place UltraActivityIndicator while your save operation begin and hide it after the operation complete. And in order to keep your UI responsive you should do your update in background thread, usually in this case we suggest usage of BackGroundWorker. Very similar issue was discussed on the following forum thread where you also will find sample which demonstrates this approach.
http://ko.infragistics.com/community/forums/t/51611.aspx
and here is tutorial from MSDN about Background Worker
https://msdn.microsoft.com/en-us/library/cc221403(v=vs.95).aspx
I hope this will helps you.
This is exactly what I wanted, thanks a lot for your help ! :)Have a nice day !