Categories | Question details Back To List | ||
onreadystatechange readyState Hi , Can you help me!!! I´m trying to make a preloder in to dhtmlXGridObject. It can be done!? Have any way to make a innerhtml="loading..." while load xml? thanks!! Answer posted by Stanislav on Sep 03, 2007 13:18 Grid provides two events, one of which fires on loading start, second on loading end grid.attachEvent("onXLS",function(){ //code which show "loading" here }); grid.attachEvent("onXLE",function(){ //code which hide "loading" here }); |