Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Vikram on Dec 14, 2008 22:24
open dhtmlx forum
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
}