In my application there is a drop down box, second drop down box value depends on first.I developed it using AJAX and Struts1.3.8.
When the second drop down box item selects it will display some information of the selected item of select options. Here the processing of the request takes much time. But end user thinks it is not working.So to avoid that i want to display the temporary page displaying
"Processing request.. Please wait...."
How to implement it using AJAX and Struts1.3.8.
In struts2 it is predefined and using stop and wait we can achieve it..
But how to do in Struts1.3.8???
Any idea and response highly appreciatable.
Thanks in advance,
Laxman chowdary
in ur ajax code ..use this
document.getElementById(disid).innerHTML= "Processing request.. Please wait....";
keep rest of ur ajax code the same way ..