Skip to content

Commit

Permalink
Merge "Closes-Bug: #1554468 - Set the row height for the grid which w…
Browse files Browse the repository at this point in the history
…ill automatically enable the ellipses if the text is longer than the column width" into R3.0
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Apr 25, 2016
2 parents 5cca099 + 7d78382 commit 7b98bcd
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ define([ 'underscore', 'contrail-view' ],function(_, ContrailView) {
options : {
detail : false,
enableAsyncPostRender:true,
checkboxSelectable : false
checkboxSelectable : false,
fixedRowHeight: 30
},
dataSource : {
remote : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1281,8 +1281,7 @@ define([
var obj = getNodeStatusForSummaryPages(data);
if(obj['alerts'].length > 0) {
if(type == 'html')
return '<span title="'+obj['messages'].join(',&#10 ')+
'" class=\"infra-nodesatus-text-ellipsis\">'+
return '<span title="'+obj['messages'].join(',&#10 ') + '" >'+
obj['messages'].join(',')+'</span>';
else if(type == 'text')
return obj['messages'].join(',');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ define(
options : {
detail : false,
enableAsyncPostRender:true,
checkboxSelectable : false
checkboxSelectable : false,
fixedRowHeight: 30
},
dataSource : {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ define(
options : {
detail : false,
checkboxSelectable : false,
enableAsyncPostRender:true
enableAsyncPostRender:true,
fixedRowHeight: 30
},
dataSource : {
remote : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ define(
body : {
options : {
detail : false,
checkboxSelectable : false
checkboxSelectable : false,
fixedRowHeight: 30
},
dataSource : {
remote : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ define(
lazyLoading: false,
detail : false,
enableAsyncPostRender:true,
checkboxSelectable : false
checkboxSelectable : false,
fixedRowHeight: 30
},
dataSource : {
remote : {
Expand Down

0 comments on commit 7b98bcd

Please sign in to comment.