Index: lams_tool_forum/conf/xdoclet/struts-actions.xml =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/conf/xdoclet/struts-actions.xml,v diff -u -r1.34 -r1.35 --- lams_tool_forum/conf/xdoclet/struts-actions.xml 3 Aug 2006 04:50:12 -0000 1.34 +++ lams_tool_forum/conf/xdoclet/struts-actions.xml 4 Aug 2006 04:25:32 -0000 1.35 @@ -233,6 +233,12 @@ parameter="init" > + + + + + + "; + var reqIDVar = new Date(); + var param = "toolContentID=" + ${param.toolContentID} +"&reqID="+reqIDVar.getTime(); + messageLoading(); + var myAjax = new Ajax.Updater( + statisticTargetDiv, + url, + { + method:'get', + parameters:param, + onComplete:messageComplete, + evalScripts:true + } + ); + + } + + function showBusy(targetDiv){ + if($(targetDiv+"_Busy") != null){ + Element.show(targetDiv+"_Busy"); + } + } + function hideBusy(targetDiv){ + if($(targetDiv+"_Busy") != null){ + Element.hide(targetDiv+"_Busy"); + } + } + function messageLoading(){ + showBusy(statisticTargetDiv); + } + function messageComplete(){ + hideBusy(statisticTargetDiv); + } //]]> \ No newline at end of file Index: lams_tool_forum/web/jsps/monitoring/monitoring.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/monitoring.jsp,v diff -u -r1.3 -r1.4 --- lams_tool_forum/web/jsps/monitoring/monitoring.jsp 30 Jun 2006 00:20:01 -0000 1.3 +++ lams_tool_forum/web/jsps/monitoring/monitoring.jsp 4 Aug 2006 04:25:32 -0000 1.4 @@ -1,8 +1,8 @@ <%@ include file="/common/taglibs.jsp"%> - +