I have an image control that displays a loading animated gif. It is initially hidden. In the HTML entities of a submit button, I show this image control using css
Code: Select all
$('#LOADINGIMAGE').css('display','block');
I do this in the client side because of the asynchronous way that eBase runs server side code. If I do setHidden(false) in the server side script it never displays because once my code finishes it hides the image control and displays the table. Once my table is ready to be presented I want to hide the control but I don't want to call setHidden(true) on it because then eBase does not display it any more. Is there a way to have server side code call the client side to set the css display property on this control ?