diff --git a/ui/new/jsp/globalsetting.jsp b/ui/new/jsp/globalsetting.jsp index ca9d8117973..c42743350dc 100644 --- a/ui/new/jsp/globalsetting.jsp +++ b/ui/new/jsp/globalsetting.jsp @@ -28,42 +28,46 @@ <%=t.t("details")%>
- -
-
-
-
Name
+ -
- - -
+

+ Loading …

+
+
+
+
+
+
+
Name
+
+
+
Value
+
+
+
Description
+
+
+ +
+
+
+ +
+
+
+ + +
+
diff --git a/ui/new/scripts/cloud.core2.globalsetting.js b/ui/new/scripts/cloud.core2.globalsetting.js index 7b304665108..7e5a6d6f476 100644 --- a/ui/new/scripts/cloud.core2.globalsetting.js +++ b/ui/new/scripts/cloud.core2.globalsetting.js @@ -33,7 +33,11 @@ function afterLoadGlobalSettingJSP() { initDialogWithOK("dialog_alert_restart_management_server"); } -function populateGlobalSettingGrid() { +function populateGlobalSettingGrid() { + var $thisTab = $("#right_panel_content #tab_content_details"); + $thisTab.find("#tab_container").hide(); + $thisTab.find("#tab_spinning_wheel").show(); + $.ajax({ data: createURL("command=listConfigurations"+maxPageSize), dataType: "json", @@ -47,7 +51,9 @@ function populateGlobalSettingGrid() { globalsettingJSONToTemplate(items[i], $newTemplate); $container.append($newTemplate.show()); } - } + } + $thisTab.find("#tab_spinning_wheel").hide(); + $thisTab.find("#tab_container").show(); } }); }