I have a ui-grid(v3.0.0-rc.20-8199eb5) cellTemplate which iterates over an array and prints out the names in the column.
{name:'roles', cellTemplate: '<div ng-repeat="role in row.entity.roles>{{role.name}}</div>'}
The row height is not big enough for the content and cuts it off. Row height will differ per entry depending on the amount of roles for the entry.
Is there a way for the entire row to auto expand/resize according to the content in the row?