mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-03 04:12:31 +01:00
bug 7861: secondary storage page - implement "Delete Secondary Storage" action.
This commit is contained in:
parent
6c45b92a68
commit
72b4552f01
@ -22,8 +22,10 @@
|
|||||||
<div class="tabbox" style="margin-top: 15px;">
|
<div class="tabbox" style="margin-top: 15px;">
|
||||||
<div class="content_tabs on" id="tab_details">
|
<div class="content_tabs on" id="tab_details">
|
||||||
<%=t.t("details")%></div>
|
<%=t.t("details")%></div>
|
||||||
|
<!--
|
||||||
<div class="content_tabs off" id="tab_secondarystorage">
|
<div class="content_tabs off" id="tab_secondarystorage">
|
||||||
<%=t.t("secondary.storage")%></div>
|
Secondary Storage</div>
|
||||||
|
-->
|
||||||
<!--
|
<!--
|
||||||
<div class="content_tabs off" id="tab_network">
|
<div class="content_tabs off" id="tab_network">
|
||||||
Network </div>
|
Network </div>
|
||||||
|
|||||||
@ -57,7 +57,7 @@ function secondaryStorageJsonToDetailsTab() {
|
|||||||
|
|
||||||
var jsonObj;
|
var jsonObj;
|
||||||
$.ajax({
|
$.ajax({
|
||||||
data: createURL("command=listHosts&type=SecondaryStorage&zoneid="+zoneObj.id),
|
data: createURL("command=listHosts&type=SecondaryStorage&zoneid="+zoneObj.id),
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
async: false,
|
async: false,
|
||||||
success: function(json) {
|
success: function(json) {
|
||||||
@ -69,6 +69,12 @@ function secondaryStorageJsonToDetailsTab() {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if(jsonObj == null) {
|
||||||
|
$thisTab.find("#tab_spinning_wheel").hide();
|
||||||
|
$thisTab.find("#tab_container").show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$thisTab.find("#id").text(fromdb(jsonObj.id));
|
$thisTab.find("#id").text(fromdb(jsonObj.id));
|
||||||
$thisTab.find("#grid_header_title").text(fromdb(jsonObj.name));
|
$thisTab.find("#grid_header_title").text(fromdb(jsonObj.name));
|
||||||
$thisTab.find("#name").text(fromdb(jsonObj.name));
|
$thisTab.find("#name").text(fromdb(jsonObj.name));
|
||||||
@ -94,7 +100,7 @@ function secondaryStorageJsonToDetailsTab() {
|
|||||||
});
|
});
|
||||||
var $actionMenu = $thisTab.find("#action_link #action_menu");
|
var $actionMenu = $thisTab.find("#action_link #action_menu");
|
||||||
$actionMenu.find("#action_list").empty();
|
$actionMenu.find("#action_list").empty();
|
||||||
//buildActionLinkForTab("Delete Secondary Storage", secondarystorageActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
buildActionLinkForTab("Delete Secondary Storage", secondaryStorageActionMap, $actionMenu, $midmenuItem1, $thisTab);
|
||||||
|
|
||||||
$thisTab.find("#tab_spinning_wheel").hide();
|
$thisTab.find("#tab_spinning_wheel").hide();
|
||||||
$thisTab.find("#tab_container").show();
|
$thisTab.find("#tab_container").show();
|
||||||
@ -105,14 +111,50 @@ function secondaryStorageJsonClearRightPanel() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function secondaryStorageJsonClearDetailsTab() {
|
function secondaryStorageJsonClearDetailsTab() {
|
||||||
var $thisTab = $("#right_panel_content").find("#tab_content_details");
|
var $thisTab = $("#right_panel_content").find("#tab_content_details");
|
||||||
$thisTab.find("#grid_header_title").text("");
|
|
||||||
$thisTab.find("#id").text("");
|
$thisTab.find("#id").text("");
|
||||||
|
$thisTab.find("#grid_header_title").text("");
|
||||||
$thisTab.find("#name").text("");
|
$thisTab.find("#name").text("");
|
||||||
|
$thisTab.find("#zonename").text("");
|
||||||
|
$thisTab.find("#type").text("");
|
||||||
|
$thisTab.find("#ipaddress").text("");
|
||||||
|
$thisTab.find("#state").text("");
|
||||||
|
$thisTab.find("#version").text("");
|
||||||
|
$thisTab.find("#disconnected").text("");
|
||||||
|
|
||||||
//actions ***
|
//actions ***
|
||||||
var $actionMenu = $thisTab.find("#action_link #action_menu");
|
var $actionMenu = $thisTab.find("#action_link #action_menu");
|
||||||
$actionMenu.find("#action_list").empty();
|
$actionMenu.find("#action_list").empty();
|
||||||
$actionMenu.find("#action_list").append($("#no_available_actions").clone().show());
|
$actionMenu.find("#action_list").append($("#no_available_actions").clone().show());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var secondaryStorageActionMap = {
|
||||||
|
"Delete Secondary Storage": {
|
||||||
|
isAsyncJob: false,
|
||||||
|
dialogBeforeActionFn: doDeleteSecondaryStorage,
|
||||||
|
inProcessText: "Deleting Secondary Storage....",
|
||||||
|
afterActionSeccessFn: function(json, $midmenuItem1, id) {
|
||||||
|
secondaryStorageJsonClearRightPanel();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function doDeleteSecondaryStorage($actionLink, $detailsTab, $midmenuItem1) {
|
||||||
|
var jsonObj = $midmenuItem1.data("jsonObj");
|
||||||
|
|
||||||
|
$("#dialog_info")
|
||||||
|
.text("Please confirm you want to delete this secondary storage")
|
||||||
|
.dialog('option', 'buttons', {
|
||||||
|
"Confirm": function() {
|
||||||
|
var $thisDialog = $(this);
|
||||||
|
$thisDialog.dialog("close");
|
||||||
|
|
||||||
|
var id = jsonObj.id;
|
||||||
|
var apiCommand = "command=deleteHost&id="+id;
|
||||||
|
doActionToTab(id, $actionLink, apiCommand, $midmenuItem1, $detailsTab);
|
||||||
|
},
|
||||||
|
"Cancel": function() {
|
||||||
|
$(this).dialog("close");
|
||||||
|
}
|
||||||
|
}).dialog("open");
|
||||||
|
}
|
||||||
@ -873,6 +873,7 @@ function bindEventHandlerToDialogAddVlanForZone() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
var secondarystorageActionMap = {
|
var secondarystorageActionMap = {
|
||||||
"Delete Secondary Storage": {
|
"Delete Secondary Storage": {
|
||||||
isAsyncJob: false,
|
isAsyncJob: false,
|
||||||
@ -885,7 +886,9 @@ var secondarystorageActionMap = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
function doDeleteSecondaryStorage($actionLink, $subgridItem) {
|
function doDeleteSecondaryStorage($actionLink, $subgridItem) {
|
||||||
var jsonObj = $subgridItem.data("jsonObj");
|
var jsonObj = $subgridItem.data("jsonObj");
|
||||||
|
|
||||||
@ -906,6 +909,7 @@ function doDeleteSecondaryStorage($actionLink, $subgridItem) {
|
|||||||
}
|
}
|
||||||
}).dialog("open");
|
}).dialog("open");
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
var zoneActionMap = {
|
var zoneActionMap = {
|
||||||
"Edit Zone": {
|
"Edit Zone": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user