The Wayback Machine - https://web.archive.org/web/20200613145621/https://github.com/topics/table
Skip to content
#

table

Here are 1,370 public repositories matching this topic...

sheetjs
dandv
dandv commented Jan 6, 2020
const XLSX = require('xlsx');

const wb = XLSX.utils.book_new();

const ws = XLSX.utils.json_to_sheet([]);

XLSX.utils.book_append_sheet(wb, ws, 'Bug sheet');

ws.A1 = { t: 's', f: 'square' };

XLSX.writeFile(wb, 'formula.ods');

The resulting .ODS file contains:

<table:table-cell table:formula="of:=square" office:value-type="string"><text:p>undefined</text:p></table
react-table
pmichna
pmichna commented Mar 19, 2018

https://jsfiddle.net/7os91g7n/20/

Reproduction steps:

  1. Extend manually columns, so the sum of their widths is larger than container size. The table becomes horizontally scrollable because of resizeMode: 'overflow'.
  2. Scroll to the right till the end.
  3. Drag the last column (E) to the left.

Existing behavior:
The transparent picture of the column is dragged with an offset from the

leahein
leahein commented Jan 23, 2020

This isn't so much an issue as a question about contributing --

I'm an avid user of the library, and have submitted a few issues in the past as well. I'd love to contribute to the library and I thought a good way to start would be by improving the docs, starting with React.
Since React has added hooks and is moving away from class components, I t

xihaoxiaohao
xihaoxiaohao commented Nov 20, 2019

Below steps leads to unexpected behavior:

  1. Mouse click on any cell
  2. Release the mouse
  3. Move the mouse to hover other cells
  4. The application will automatically select those hover cell

Codesandbox: https://4jdit.csb.app

Code:

import React, { useState } from "react";
import ReactDataSheet from "react-datasheet";
import "react-datasheet/lib/react-datasheet.css";

expor
edjm1971
edjm1971 commented Apr 6, 2020

I'm submitting a ... (check one with "x")

[X] feature request
[X] support request => Please do not submit support request here, post on Stackoverflow or Gitter

Current behavior
Plenty of examples are out there with code but nothing explains where the values for the variables are coming from.

Expected behavior
Expect to be able to open the API document and have it t

Rikaelus
Rikaelus commented Jul 18, 2017

http://jsfiddle.net/ht16273t/

As the above Fiddle demonstrates, moving rows between grids doesn't seem to update each grid's pagination. This leads to pages not being added in the destination (and the row seemingly being lost) and all kind of oddness in the source. I'd think this could be resolved with a reloadGrid on each but the ondrop event, according to the documentation, doesn't pass the s

Bug
joshdcuneo
joshdcuneo commented Dec 31, 2018

Griddle version

1.13.1

Expected Behavior

Custom filter component is passed onChange props to set filter as described in this example.

Actual Behavior

Custom filter component is passed setFilter props instead.

Steps to reproduce

Implement this example code using Griddle 1.13.1

class Filter extends Componen
LeFnord
LeFnord commented Aug 13, 2019

这个新特性和一个问题相关吗?简单描述下,比如我什么场景下,需要解决什么问题,发现表格不支持这个功能
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**描述下,你希望得到的什么解决方案 **
Describe the solution you'd like
A clear and concise description of what you want to happen.

是否有不错的替代方案
**Describe alternatives you've considered

china-live
china-live commented Mar 26, 2020

(必填)这个需求解决了什么问题 What problem does this feature solve

?表格内有一个或多个操作按钮,我希望在点击这些按钮后显示loading,并在稍后处理完毕后恢复。

(必填)请填写问题链接来描述为什么无法实现该功能,例如(jsfiddlecodesandboxjsrun) Reproduction link

?如果要实现这样的功能,就需要使用 $event 把原生DOM 事件传入处理方法,但目前vxe-button好像无法这样传入(表格内用原生非vxe-按钮要单独调样式)。

geajack
geajack commented Dec 26, 2018

Sorry this isn't really about the library itself, although I suppose it could be described as a documentation issue. The website http://lorenzofox3.github.io/smart-table-website/ causes a massive memory spike when I open it in either Firefox or Chrome, eventually crashing the computer and forcing me to reboot with the power switch. This happens on both Ubuntu and Windows 7 (although on the same ma

olddeda
olddeda commented Nov 16, 2019
  • Vue.js version: 2.6.10
  • Nuxt.js version: 2.10.2

nuxt.config.js

plugins: [
....
  {
    src: "~plugins/vue-tables-2.js",
    ssr: true, //or false, the same
  },
....

/plugins/vue-tables-2.js

import {
    ServerTable
} from 'vue-tables-2'

export default ({
    app: {
        $axios,
    },
}, inject) => {
    Vue.use(Serve
rickhoutman
rickhoutman commented Jul 1, 2019

When the scroll container has left and/or right padding the width of the floatThead-container is not calculated correctly and the table headers are positioned over the scrollbar which makes the top of the scrollbar not usable.

Steps to reproduce:

  • Add a div with left and right padding around the table and add the floatthead plugin on the table with the div as the scrollContainer.
  • Now try t

Improve this page

Add a description, image, and links to the table topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the table topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.