From 5de896a95f63013ca31a1900a8eee104f5c3da33 Mon Sep 17 00:00:00 2001 From: Robert Gemmell Date: Tue, 7 May 2013 10:31:30 +0000 Subject: QPID-4747: we no longer need the 'default' column in the authentication provider grid as we removed the functionality merged from trunk r1479839 git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/0.22@1479843 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/resources/js/qpid/management/Broker.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'qpid/java') diff --git a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js index 9074c1b43c..7a338476c4 100644 --- a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js +++ b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js @@ -389,7 +389,7 @@ define(["dojo/_base/xhr", that.brokerUpdater, that.brokerUpdater.vhostsGrid.grid, "rest/virtualhost", - "Deletion of virtual will delete the message store data.\n\n Are you sure you want to delete virtual host"); + "Deletion of virtual host will delete the message store data.\n\n Are you sure you want to delete virtual host"); } ); @@ -576,19 +576,14 @@ define(["dojo/_base/xhr", that.authenticationProvidersGrid = new UpdatableStore(that.brokerData.authenticationproviders, query(".broker-authentication-providers")[0], - [ { name: "Name", field: "name", width: "30%"}, + [ { name: "Name", field: "name", width: "40%"}, { name: "State", field: "state", width: "20%"}, { name: "Type", field: "type", width: "20%"}, { name: "User Management", field: "type", width: "20%", formatter: function(val){ return ""; } - }, - { name: "Default", field: "name", width: "10%", - formatter: function(val){ - return ""; - } - } + } ], function(obj) { connect.connect(obj.grid, "onRowDblClick", obj.grid, function(evt){ -- cgit v1.2.1