summaryrefslogtreecommitdiffstats
path: root/install/ui/hbac.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/hbac.js')
-rw-r--r--install/ui/hbac.js21
1 files changed, 2 insertions, 19 deletions
diff --git a/install/ui/hbac.js b/install/ui/hbac.js
index f18024e12..01370ec70 100644
--- a/install/ui/hbac.js
+++ b/install/ui/hbac.js
@@ -106,27 +106,10 @@ IPA.hbacsvcgroup_member_hbacsvc_table_widget = function (spec) {
var column = that.create_column({
name: 'cn',
primary_key: true,
- width: '150px'
+ width: '150px',
+ link: true
});
- column.setup = function(container, record) {
- container.empty();
-
- var value = record[column.name];
- value = value ? value.toString() : '';
-
- $('<a/>', {
- 'href': '#'+value,
- 'html': value,
- 'click': function (value) {
- return function() {
- IPA.nav.show_page(that.other_entity, 'details', value);
- return false;
- };
- }(value)
- }).appendTo(container);
- };
-
that.create_column({
name: 'description',
width: '350px'