I'm using Angular UI Grid and my situation is next. I have 100 items, items = [{}, {}, ..., {}] and I wanna display all these items in the grid but I wanna 100 for each item in DOM at same time too. Is this possible?
As I've understood ui.grid just adds to DOM the necessary number of divs based in viewport height and the height of each row. I mean ui.grid just maintain in DOM a few necessary divs to fill the grid area.
What I need is one div for each item and no changes in DOM while I'm doing scroll.
Thanks in advance!