Skip to content

Commit

Permalink
Fix #694 tooltips will have to do as gridster needs the whole element…
Browse files Browse the repository at this point in the history
… to be draggable.
  • Loading branch information
gashcrumb committed Nov 19, 2013
1 parent c46480f commit 2369517
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions 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" title="{{row.entity.name}}" data-placement="bottom"><div class="inline" compile="getDashboardWidgets(row.entity)"></div>{{row.entity.name}}</div>'},
cellTemplate: '<div class="ngCellText" title="{{row.entity.name}}" data-placement="bottom"><div ng-show="!inDashboard" 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,7 +29,6 @@ module Jmx {
canSelectRows: false,
showColumnMenu: true,
displaySelectionCheckbox: false,
enableColumnResize: true,
filterOptions: {
filterText: ''
},
Expand Down

0 comments on commit 2369517

Please sign in to comment.