Grid with Very Large Data Set
One of the new additions to our Javascript Grid Web Component is the capability to load very large data sets. Example: Grid Large Data Set. In the example, we demonstrate how to load 50,000 rows and 1,000 columns. This can be achieved due to the built in Fast Data and User Interface virtualization. We create HTML Elements only for the View and update them while user scrolls. The Grid is also in unbound mode and the demo is created by using this code:
Smart('#grid', class { get properties() { return { appearance: { showRowNumber: true }, columnWidth: 100, dataSource: new Smart.DataAdapter( { dataSource: 50000, dataFields: 1000 }), onCellRender(cell) { cell.value = cell.row.index + '.' + cell.column.index; } } } });
This entry was posted in Smart Grid and tagged datagrid large data set, Grid, javascript grid, javascript table, large data set, table, table data, table grid, unbound grid, unbound table. Bookmark the permalink.
|
|