From 3048fc50b24988a5b6926dc4ddb22cea09bc1d4d Mon Sep 17 00:00:00 2001 From: mxi1 Date: Thu, 3 Sep 2009 10:06:42 +0000 Subject: [PATCH] little JS code update to support graphics view for RMC monitoring git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4092 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/js/xcat.js | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/xCAT-UI/js/xcat.js b/xCAT-UI/js/xcat.js index aec084f80..0a9fcaf97 100644 --- a/xCAT-UI/js/xcat.js +++ b/xCAT-UI/js/xcat.js @@ -507,14 +507,31 @@ function monsetupAction(plugin, action_val) }); } -function show_monshow_data() { - //used for the OK button in the web page "rmc_monshow.php"; - $("#monshow_opt").hide("slow"); - $(":input[@checked]").each(function(i) { - $.get("monitor/rmc_monshow_data_source.php", {value: $(this).attr("value")}, function(data) { - $("#monshow_data").append(data); + +function show_monshow_graph() { + //used for the "view by graph" button in the web page "rmc_monshow.php" + if($(":input[@checked]").size() != 0) { + $("#monshow_data").empty(); + $("#monshow_opt").hide("slow"); + $(":input[@checked]").each(function(i) { + //generate graphics for all the attributes in "checked" status }); - }); + } else { + } +} +function show_monshow_text() { + //used for the "view by text" button in the web page "rmc_monshow.php"; + if($(":input[@checked]").size() != 0) { + $("#monshow_data").empty(); + $("#monshow_opt").hide("slow"); + $(":input[@checked]").each(function(i) { + $.get("monitor/rmc_monshow_data_source.php", {value: $(this).attr("value")}, function(data) { + $("#monshow_data").append(data); + }); + }); + } else { + $("#monshow_data").html("

Please select one or more attributes from the table

"); + } } function rmc_monshow_back_to_opts() {