Categories | Question details Back To List | ||
Need Knowledge base Interactive Version Ajax Progress Bar Icon and Implementation The interactive version produces an ajax-loader icon on querying for questions from the search bar.Can you provide me a sample snippet on the implementation of the icon on the search input field. Answer posted by Support on Dec 15, 2008 02:07 It just show animated gif image when search started and hide it after data loading. Someting similar to document.getElementById("progress").style.display='block'; //show progress dhtmlxAjax("search.php",function(){ //render output document.getElementById("progress").style.display='none'; //hide progress } |