regular-table icon indicating copy to clipboard operation
regular-table copied to clipboard

A regular <table> library, for async and virtual data models.

Results 23 regular-table issues
Sort by recently updated
recently updated
newest added

## Bug Report ### Steps to Reproduce: 1. Create a spreadsheet. 2. Create a column with a large string inside that will not be displayed in the first frame. 3....

bug

## Bug Report ### Steps to Reproduce: 1. Go to the perspective [homepage](https://perspective.finos.org/) 2. Change the perspective viewer plugin to the datagrid 3. Resize the group tree column (first column)...

## Bug Report ### Steps to Reproduce: I'm trying out the new `virtual_mode` option for `setDataListener`: https://github.com/jpmorganchase/regular-table/blob/6dbee4ffe1b3c1342ae3903a39456aa9d5131cda/src/js/index.js#L272-L279 The `both` and `horizontal` options seem to work fine, but trying to use...

bug

Currently it is possible for a 3rd party library to subclass `RegularTableElement` (the class backing our `regular-table` custom element), though it is a bit awkward: ```javascript import "regular-table"; customElements.whenDefined('regular-table').then(() =>...

question
documentation

## Feature Request ### Description of Problem: I'm trying to convert existing tables to regular-table. These tables use multiple HTML elements like buttons with hover. When multiple elements are not...

bug

Not sure if this is a bug, or intended behavior (or if I'm just missing something obvious). ### Steps to Reproduce: Clone this repo, then: ``` yarn install yarn start...

bug

If you let a `td` be taller than `regular-table` expects, the scroll position miscalculates. ```javascript table.addStyleListener(() => { for (const td of table.querySelectorAll("td")) { td.style["white-space"] = "normal"; td.style["word-wrap"] = "break-word";...

bug

## The repro I came up with a simple repro of the issue I was having in #115: https://bl.ocks.org/telamonian/00c777c2194e11f43bd7ade294095aa1 ## The "bug" The `` element renders as zero height. ##...

question

## Feature Request ### Description of Problem: As per the conversation [here](https://github.com/jupyterlab/team-compass/issues/122), one interesting feature that `@lumino/datagrid` has that `regular-table` is currently lacking is support for explicitly specifying row height....

enhancement