I have problem with ng - grid
in cellTemplate i hane ng-repeat :<div ng-repeat="address in row.entity.addresses>"
but height of row is constant and some of addresses i can't see
what i need to do?
this solution removes cell's border
I have problem with ng - grid
in cellTemplate i hane ng-repeat :<div ng-repeat="address in row.entity.addresses>"
but height of row is constant and some of addresses i can't see
what i need to do?
this solution removes cell's border
This is a commonly requested feature for ng-grid, but currently there aren't any plans to add it. [0]
This is because table virtualization is a big feature for ng-grid that's important to a lot of people, and they haven't written/figured out logic to quickly estimate the total height of all rows while only rendering, for example, 30 of them.
At this time your options are to look at other grid/table libraries, or to figure out another UX that you're okay with (e.g. maybe only render the first 60 characters and provide the rest in a tooltip when the user hovers/taps the cell)