Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cretezy/rc-table

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cretezy/rc-table

table ui component for react

  • 6.1.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

rc-table

React table component.

NPM version build status Test coverage gemnasium deps npm download

install

rc-table

Development

npm install
npm start

Example

http://react-component.github.io/table/examples/

Usage

import Table from 'rc-table';

const columns = [{
  title: 'Name', dataIndex: 'name', key:'name', width: 100,
}, {
  title: 'Age', dataIndex: 'age', key:'age', width: 100,
}, {
  title: 'Address', dataIndex: 'address', key:'address', width: 200,
}, {
  title: 'Operations', dataIndex: '', key:'operations', render: () => <a href="#">Delete</a>,
}];

const data = [
  { name: 'Jack', age: 28, address: 'some where', key:'1' },
  { name: 'Rose', age: 36, address: 'some where', key:'2' },
];

React.render(<Table columns={columns} data={data} />, mountNode);

API

Properties

NameTypeDefaultDescription
prefixClsStringrc-table
classNameStringadditional className
idStringidentifier of the container div
useFixedHeaderBooleanfalsewhether use separator table for header. better set width for columns
scrollObject{x: false, y: false}whether table can be scroll in x/y direction, `x` or `y` can be a number that indicated the width and height of table body
expandIconAsCellBooleanfalsewhether render expandIcon as a cell
expandIconColumnIndexNumber0The index of expandIcon which column will be inserted when expandIconAsCell is false
rowKeystring or Function(record):string'key' If rowKey is string, `record[rowKey]` will be used as key. If rowKey is function, the return value of `rowKey(record)` will be use as key.
rowClassNamestring or Function(record, index, indent):stringget row's className
rowRefFunction(record, index, indent):stringget row's ref key
defaultExpandedRowKeysString[][]initial expanded rows keys
expandedRowKeysString[]current expanded rows keys
defaultExpandAllRowsBooleanfalseExpand All Rows initially
onExpandedRowsChangeFunction(expandedRows)save the expanded rows in the internal statefunction to call when the expanded rows change
onExpandFunction(expanded, record)function to call when click expand icon
expandedRowClassNameFunction(recode, index, indent):stringget expanded row's className
dataObject[]data record array to be rendered
indentSizeNumber15indentSize for every level of data.i.children, better using with column.width specified
onRowClick[deprecated]Function(record, index)handle rowClick action, index means the index of current row among fatherElement[childrenColumnName]
onRowDoubleClick[deprecated]Function(record, index)handle rowDoubleClick action, index means the index of current row among fatherElement[childrenColumnName]
onRowMouseEnter[deprecated]Function(record, index)handle onRowMouseEnter action, index means the index of current row among fatherElement[childrenColumnName]
onRowMouseLeave[deprecated]Function(record, index)handle onRowMouseLeave action, index means the index of current row among fatherElement[childrenColumnName]
onRowFunction(record, index)Set custom props per each row.
onHeaderRowFunction(record, index)Set custom props per each header row.
showHeaderBooleantruewhether table head is shown
titleFunction(currentData)table title render function
footerFunction(currentData)table footer render function
getBodyWrapper[deprecated]Function(body)get wrapper of tbody, [demo](http://react-component.github.io/table/examples/animation.html)
emptyTextReact.Node or Function`No Data`Display text when data is empty
columnsObject[] The columns config of table, see table below
componentsObject Override table elements, see [#171](https://github.com/react-component/table/pull/171) for more details

Column Props

NameTypeDefaultDescription
keyStringkey of this column
classNameStringclassName of this column
colSpanNumberthead colSpan of this column
titleReact Nodetitle of this column
dataIndexStringdisplay field of the data record
widthString|Numberwidth of the specific proportion calculation according to the width of the columns
fixedString|Booleanthis column will be fixed when table scroll horizontally: true or 'left' or 'right'
alignStringspecify how content is aligned
onCellFunction(record)Set custom props per each cell.
onHeaderCellFunction(record)Set custom props per each header cell.
renderFunction(value, row, index)The render function of cell, has three params: the text of this cell, the record of this row, the index of this row, it's return an object:{ children: value, props: { colSpan: 1, rowSpan:1 } } ==> 'children' is the text of this cell, props is some setting of this cell, eg: 'colspan' set td colspan, 'rowspan' set td rowspan
onCellClick[deprecated]Function(row, event)Called when column's cell is clicked

License

rc-table is released under the MIT license.

Keywords

FAQs

Package last updated on 26 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc