I'm using ui.grid so I got next question.
Rows in ui.grid datatable are wrapped by next div
<div class="ui-grid-row ng-scope" ng-repeat="(rowRenderIndex, row) in rowContainer.renderedRows track by $index" >
</div>
Now I got 25 records, but there are less than 25 in my HTML. $(".ui-grid-row").length is always != 25.
Is there a way to display all rows as records I have.?
$(".ui-grid-row").length === 25?
Thanks in advance!