Shak Ham
Shak Ham

Reputation: 1269

Angular UI Grid adjust row height based on content

Is it possible to adjust the row height in the grid to display the entire content?

Upvotes: 5

Views: 5896

Answers (1)

Aditya Sethi
Aditya Sethi

Reputation: 10586

You will have to override the bootstrap css

.ngCell  {
  display : table-cell;
  height: auto !important;
  overflow:visible;
  position: static;
}

.ngRow {
  display : table-row;
  height: auto !important;
  position: static;
}

.ngCellText{
  height: auto !important;
  white-space: normal;
  overflow:visible;
}

Upvotes: 2

Related Questions