is it possible to show some image or text when grid loading? Like progressing bar until the grid open.
hmmmm why would you need that? heavy grid? cut down in fewer partial lines perhaps… didn’t try to add image in onscriptinit, or onapplicationinit but i guess it is java part part which needs some extra stuff as it needs to disappear when grid is fully loaded
I did that with my menu’s onExecute. I executed a div on Menu and it works.
hmmmm did you manage to have loading image? please explain
Yep. I upload a gif to my SC lib. and I called it on the menu’s onExecute part.
OnApplicationInit:
//LOADING GIF
[head_loading]=’<center><div id=“loading”><img id=“loading-image” src=“http://inspect-ytu.metglobal.net:88/scriptcase/devel/conf/sys/img/bg/716.GIF” alt=“Loading…” /></div></center>’;
[footer_loading]=’<style>#loading{display:none;}</style><style>#loading2{display:none;}</style>’;
OnExecute:
echo [head_loading];
it’s just like that.