bug 7448: zone tree - network - implement Refresh button on right panel.

This commit is contained in:
Jessica Wang 2010-12-09 15:00:41 -08:00
parent 6a57168a0c
commit ccf812dde7

View File

@ -232,9 +232,12 @@ function resourceLoadPage(pageToShow, $midmenuItem1) { //$midmenuItem1 is eith
});
afterLoadZoneJSP($midmenuItem1);
}
else if(pageToShow == "jsp/network.jsp") {
$(this).data("onRefreshFn", function() {
//directNetworkJsonToDetailsTab();
else if(pageToShow == "jsp/network.jsp") {
$(this).data("onRefreshFn", function() {
var zoneObj = $midmenuItem1.data("jsonObj");
if(zoneObj == null)
return;
$("#zone_"+zoneObj.id).find("#network_header").click();
});
afterLoadNetworkJSP($midmenuItem1);
}