diff --git a/ui/jsp/networkoffering.jsp b/ui/jsp/networkoffering.jsp
index b057e5aba8a..194a0c1ea07 100644
--- a/ui/jsp/networkoffering.jsp
+++ b/ui/jsp/networkoffering.jsp
@@ -93,21 +93,10 @@
-
-
-
+
+
+
+
diff --git a/ui/scripts/cloud.core.networkoffering.js b/ui/scripts/cloud.core.networkoffering.js
index a34ec779d07..4fa4795f461 100644
--- a/ui/scripts/cloud.core.networkoffering.js
+++ b/ui/scripts/cloud.core.networkoffering.js
@@ -144,7 +144,7 @@ function networkOfferingJsonToDetailsTab() {
dataType: "json",
async: false,
success: function(json) {
- var items = json.listNetworkOfferingsresponse.NetworkOffering;
+ var items = json.listnetworkofferingsresponse.networkoffering;
if(items != null && items.length > 0) {
jsonObj = items[0];
$midmenuItem1.data("jsonObj", jsonObj);
@@ -160,14 +160,15 @@ function networkOfferingJsonToDetailsTab() {
$thisTab.find("#displaytext").text(fromdb(jsonObj.displaytext));
//$thisTab.find("#displaytext_edit").val(fromdb(jsonObj.displaytext));
-
- $thisTab.find("#type").text(fromdb(jsonObj.type));
- $thisTab.find("#traffictype").text(fromdb(jsonObj.traffictype));
-
+
+ $thisTab.find("#availability").text(fromdb(jsonObj.availability));
+
setBooleanReadField(jsonObj.isdefault, $thisTab.find("#isdefault"));
setBooleanReadField(jsonObj.specifyvlan, $thisTab.find("#specifyvlan"));
-
-
+
+ $thisTab.find("#type").text(fromdb(jsonObj.type));
+ $thisTab.find("#traffictype").text(fromdb(jsonObj.traffictype));
+
//actions ***
var $actionMenu = $("#right_panel_content #tab_content_details #action_link #action_menu");
$actionMenu.find("#action_list").empty();