Naively we could use <template is="dom-repeat"> but perhaps a better alternative would be to use <iron-list> as the core rendering engine. It has the following good features (amongst others) for it to be used as the core rendering engine for a virtual list. Many features are similar to the virtual scrolling features baked into dgrid and other grids.
It takes the viewport into account and renders only the minimum possible nodes for a HUGE items array.
Its very loose! Any template inside it can be rendered. Perfect as the engine which would drive the rest of super-grid with advanced functionalities.
Naively we could use
<template is="dom-repeat">
but perhaps a better alternative would be to use<iron-list>
as the core rendering engine. It has the following good features (amongst others) for it to be used as the core rendering engine for a virtual list. Many features are similar to the virtual scrolling features baked into dgrid and other grids.