EddieUp / antd-table-saveas-excel

antd table to excel
52 stars 13 forks source link

custom header #4

Closed hellobq closed 3 years ago

hellobq commented 3 years ago

hello, can this code base support custom header ? like this:

image

EddieUp commented 3 years ago

Above the table header?

hellobq commented 3 years ago

Above the table header?

yeah. do you support this feature now? please give me a demo. thanks a lot.

EddieUp commented 3 years ago

Above the table header?

yeah. do you support this feature now? please give me a demo. thanks a lot.

support a row header, like this:

const columns = [
  {
    title: 'i am header',
    children: [
      {
        title: 'Name',
        dataIndex: 'name',
      },
      {
        title: 'Age',
        dataIndex: 'age',
        render: renderContent,
      },
      {
        title: 'Home phone',
        colSpan: 2,
        dataIndex: 'tel',
      },
      {
        title: 'Phone',
        colSpan: 0,
        dataIndex: 'phone',
        render: renderContent,
      },
      {
        title: 'Address',
        dataIndex: 'address',
        render: renderContent,
      },
    ],
  },
]

not support more rows merged now, support for the next version😄