Skip to content

Commit

Permalink
Add tooltip for #694 and make attribute table columns resizable, stil…
Browse files Browse the repository at this point in the history
…l need to configure gridster so that only the titlebar of a widget is used for dragging for this to be fully fixed.
  • Loading branch information
gashcrumb committed Nov 18, 2013
1 parent deeb61b commit 188c43c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hawtio-web/src/main/webapp/app/jmx/js/attributes.ts
Expand Up @@ -2,7 +2,7 @@ module Jmx {

export var propertiesColumnDefs = [
{field: 'name', displayName: 'Property', width: "27%",
cellTemplate: '<div class="ngCellText"><div class="inline" compile="getDashboardWidgets(row.entity)"></div>{{row.entity.name}}</div>'},
cellTemplate: '<div class="ngCellText" title="{{row.entity.name}}" data-placement="bottom"><div class="inline" compile="getDashboardWidgets(row.entity)"></div>{{row.entity.name}}</div>'},
{field: 'value', displayName: 'Value', width: "70%",
cellTemplate: '<div class="ngCellText" ng-click="openDetailView(row.entity)" ng-bind-html-unsafe="row.entity.summary"></div>'
}
Expand All @@ -29,6 +29,7 @@ module Jmx {
canSelectRows: false,
showColumnMenu: true,
displaySelectionCheckbox: false,
enableColumnResize: true,
filterOptions: {
filterText: ''
},
Expand Down

0 comments on commit 188c43c

Please sign in to comment.