17

我正在使用https://react-table.js.org/#/story/readme从服务器响应中显示表格。但对于长度较长的列数据,其显示省略号。我没有找到包装它的方法,以便显示完整的数据。

在文档中,他们提到了style道具,但我无法弄清楚。我在下面尝试过,但没有奏效。

<ReactTable
    data={respDataArr}
    columns={columns}
    style={{overflow:'wrap'}}
/>

有人可以建议我应该做什么改变吗?

4

4 回答 4

49

你会想要使用 css 属性white-space: unset;

找到要换行的列并将以下内容添加为列的属性

// Example Column definition
{
    Header: 'header', 
    accessor: 'data1',
    style: { 'whiteSpace': 'unset' } //Add this line to the column definition
}

或者,您可以添加一个.ReactTable .rt-td直接在您的 css/sass/scss中定位的类

已编辑:添加示例列定义以使其更清晰,更新为新的 react-table api

于 2018-03-08T22:44:56.677 回答
12

根据 Steffan 的说法,为了进一步使答案更清楚:

这是我的列定义:

   const responsesData = [{..}, {..} .... etc ..];
   const columsDefnSamplesQsReactTable = [{
        Header: 'Question Code',
        accessor: 'Id'
    }, {
        Header: 'Question Text',
        accessor: 'QuestionText',
        style: { 'white-space': 'unset' } // allow for words wrap inside only this cell
    }];

    <ReactTable data={responsesData} columns= columsDefnSamplesQsReactTable } 
     defaultPageSize={3} />

在此处输入图像描述

于 2018-06-14T04:04:04.220 回答
3

为了让它对我有用,我不得不使用这个 sytnax:

style: { 'whiteSpace': 'unset' } 
于 2018-09-05T14:15:26.897 回答
0

const columsDefnSamplesQsReactTable = [
  {
    Header: "Question Code",
    accessor: "Id",
  },
  {
    Header: "Question Text",
    accessor: "QuestionText",
    style: { overflowWrap: "break-word" }, // allow for words wrap inside this cell
  },
];

于 2020-08-10T12:31:32.923 回答