logoAnt Design

⌘ K
  • 디자인
  • 개발
  • 컴포넌트
  • 블로그
  • 자료
5.21.3
  • Components Overview
  • General
    • Button
    • FloatButton
      5.0.0
    • Icon
    • Typography
  • Layout
    • Divider
    • Flex
      5.10.0
    • Grid
    • Layout
    • Space
    • Splitter
      5.21.0
  • Navigation
    • Anchor
    • Breadcrumb
    • Dropdown
    • Menu
    • Pagination
    • Steps
  • Data Entry
    • AutoComplete
    • Cascader
    • Checkbox
    • ColorPicker
      5.5.0
    • DatePicker
    • Form
    • Input
    • InputNumber
    • Mentions
    • Radio
    • Rate
    • Select
    • Slider
    • Switch
    • TimePicker
    • Transfer
    • TreeSelect
    • Upload
  • Data Display
    • Avatar
    • Badge
    • Calendar
    • Card
    • Carousel
    • Collapse
    • Descriptions
    • Empty
    • Image
    • List
    • Popover
    • QRCode
      5.1.0
    • Segmented
    • Statistic
    • Table
    • Tabs
    • Tag
    • Timeline
    • Tooltip
    • Tour
      5.0.0
    • Tree
  • Feedback
    • Alert
    • Drawer
    • Message
    • Modal
    • Notification
    • Popconfirm
    • Progress
    • Result
    • Skeleton
    • Spin
    • Watermark
      5.1.0
  • Other
    • Affix
    • App
      5.1.0
    • ConfigProvider
    • Util
      5.13.0

Table

A table displays rows of data.
가져오기import{ Table }from"antd";
소스components/table
문서
이 페이지 수정변경 로그

Resources

Ant Design Charts
Ant Design Pro
Ant Design Pro Components
Ant Design Mobile
Ant Design Mini
Ant Design Landing-Landing Templates
Scaffolds-Scaffold Market
Umi-React Application Framework
dumi-Component doc generator
qiankun-Micro-Frontends Framework
ahooks-React Hooks Library
Ant Motion-Motion Solution
China Mirror 🇨🇳

Community

Awesome Ant Design
Medium
Twitter
yuque logoAnt Design in YuQue
Ant Design in Zhihu
Experience Cloud Blog
seeconf logoSEE Conf-Experience Tech Conference
Work with Us

Help

GitHub
Change Log
FAQ
Bug Report
Issues
Discussions
StackOverflow
SegmentFault

Ant XTech logoMore Products

yuque logoYuQue-Document Collaboration Platform
AntV logoAntV-Data Visualization
Egg logoEgg-Enterprise Node.js Framework
Kitchen logoKitchen-Sketch Toolkit
Galacean logoGalacean-Interactive Graphics Solution
xtech logoAnt Financial Experience Tech
Theme Editor
Made with ❤ by
Ant Group and Ant Design Community
loading

When To Use

  • To display a collection of structured data.
  • To sort, search, paginate, filter data.

How To Use

Specify dataSource of Table as an array of data.

const dataSource = [
{
key: '1',
name: 'Mike',
age: 32,
address: '10 Downing Street',
},
{
key: '2',
name: 'John',
age: 42,
address: '10 Downing Street',
},
];
const columns = [
{
title: 'Name',
dataIndex: 'name',
key: 'name',
},
{
title: 'Age',
dataIndex: 'age',
key: 'age',
},
{
title: 'Address',
dataIndex: 'address',
key: 'address',
},
];
<Table dataSource={dataSource} columns={columns} />;

Promotion

  • Kitchen Sketch Plugin 💎
  • ProTable - Advanced Tables
  • S2 - Analytical Tables

Examples

API

Common props ref:Common props

Table

PropertyDescriptionTypeDefaultVersion
borderedWhether to show all table bordersbooleanfalse
columnsColumns of tableColumnsType[]-
componentsOverride default table elementsTableComponents-
dataSourceData record array to be displayedobject[]-
expandableConfig expandable contentexpandable-
footerTable footer rendererfunction(currentPageData)-
getPopupContainerThe render container of dropdowns in table(triggerNode) => HTMLElement() => TableHtmlElement
loadingLoading status of tableboolean | Spin Propsfalse
localeThe i18n text including filter, sort, empty text, etcobjectDefault Value
paginationConfig of pagination. You can ref table pagination config or full pagination document, hide it by setting it to falseobject | false-
rowClassNameRow's classNamefunction(record, index): string-
rowKeyRow's unique key, could be a string or function that returns a stringstring | function(record): stringkey
rowSelectionRow selection configobject-
rowHoverableRow hoverbooleantrue5.16.0
scrollWhether the table can be scrollable, configobject-
showHeaderWhether to show table headerbooleantrue
showSorterTooltipThe header show next sorter direction tooltip. It will be set as the property of Tooltip if its type is objectboolean | Tooltip props & {target?: 'full-header' | 'sorter-icon' }{ target: 'full-header' }5.16.0
sizeSize of tablelarge | middle | smalllarge
sortDirectionsSupported sort way, could be ascend, descendArray[ascend, descend]
stickySet sticky header and scroll barboolean | {offsetHeader?: number, offsetScroll?: number, getContainer?: () => HTMLElement}-4.6.0 (getContainer: 4.7.0)
summarySummary content(currentData) => ReactNode-
tableLayoutThe table-layout attribute of table element- | auto | fixed-
fixed when header/columns are fixed, or using column.ellipsis
titleTable title rendererfunction(currentPageData)-
virtualSupport virtual listboolean-5.9.0
onChangeCallback executed when pagination, filters or sorter is changedfunction(pagination, filters, sorter, extra: { currentDataSource: [], action: paginate | sort | filter })-
onHeaderRowSet props on per header rowfunction(columns, index)-
onRowSet props on per rowfunction(record, index)-
onScrollTriggered when the table body is scrolled. Note that only vertical scrolling will trigger the event when virtualfunction(event)-5.16.0

Table ref

PropertyDescriptionTypeVersion
nativeElementThe wrap elementHTMLDivElement5.11.0
scrollToTrigger to scroll to target position. key match with record rowKey(config: { index?: number, key?: React.Key, top?: number }) => void5.11.0

onRow usage

Same as onRow onHeaderRow onCell onHeaderCell

<Table
onRow={(record, rowIndex) => {
return {
onClick: (event) => {}, // click row
onDoubleClick: (event) => {}, // double click row
onContextMenu: (event) => {}, // right button click row
onMouseEnter: (event) => {}, // mouse enter row
onMouseLeave: (event) => {}, // mouse leave row
};
}}
onHeaderRow={(columns, index) => {
return {
onClick: () => {}, // click header row
};
}}
/>

Column

One of the Table columns prop for describing the table's columns, Column has the same API.

PropertyDescriptionTypeDefaultVersion
alignThe specify which way that column is alignedleft | right | centerleft
classNameThe className of this columnstring-
colSpanSpan of this column's titlenumber-
dataIndexDisplay field of the data record, support nest path by string arraystring | string[]-
defaultFilteredValueDefault filtered valuesstring[]-
filterResetToDefaultFilteredValueclick the reset button, whether to restore the default filterbooleanfalse
defaultSortOrderDefault order of sorted valuesascend | descend-
ellipsisThe ellipsis cell content, not working with sorter and filters for now.
tableLayout would be fixed when ellipsis is true or { showTitle?: boolean }
boolean | {showTitle?: boolean }falseshowTitle: 4.3.0
filterDropdownCustomized filter overlayReactNode | (props: FilterDropdownProps) => ReactNode-
filterDropdownOpenWhether filterDropdown is visibleboolean-
filteredWhether the dataSource is filteredbooleanfalse
filteredValueControlled filtered value, filter icon will highlightstring[]-
filterIconCustomized filter iconReactNode | (filtered: boolean) => ReactNode-
filterOnCloseWhether to trigger filter when the filter menu closesbooleantrue5.15.0
filterMultipleWhether multiple filters can be selectedbooleantrue
filterModeTo specify the filter interface'menu' | 'tree''menu'4.17.0
filterSearchWhether to be searchable for filter menuboolean | function(input, record):booleanfalseboolean:4.17.0 function:4.19.0
filtersFilter menu configobject[]-
fixed(IE not support) Set column to be fixed: true(same as left) 'left' 'right'boolean | stringfalse
keyUnique key of this column, you can ignore this prop if you've set a unique dataIndexstring-
renderRenderer of the table cell. The return value should be a ReactNodefunction(text, record, index) {}-
responsiveThe list of breakpoints at which to display this column. Always visible if not setBreakpoint[]-4.2.0
rowScopeSet scope attribute for all cells in this columnrow | rowgroup-5.1.0
shouldCellUpdateControl cell render logic(record, prevRecord) => boolean-4.3.0
showSorterTooltipIf header show next sorter direction tooltip, override showSorterTooltip in tableboolean | Tooltip props & {target?: 'full-header' | 'sorter-icon' }{ target: 'full-header' }5.16.0
sortDirectionsSupported sort way, override sortDirections in Table, could be ascend, descendArray[ascend, descend]
sorterSort function for local sort, see Array.sort's compareFunction. If it is server-side sorting, set to true, but if you want to support multi-column sorting, you can set it to { multiple: number }function | boolean | { compare: function, multiple: number }-
sortOrderOrder of sorted values: ascend descend nullascend | descend | null-
sortIconCustomized sort icon(props: { sortOrder }) => ReactNode-5.6.0
titleTitle of this columnReactNode | ({ sortOrder, sortColumn, filters }) => ReactNode-
widthWidth of this column (width not working?)string | number-
minWidthMin width of this column, only works when tableLayout="auto"number-5.21.0
hiddenHidden this columnbooleanfalse5.13.0
onCellSet props on per cellfunction(record, rowIndex)-
onFilterFunction that determines if the row is displayed when filteredfunction(value, record) => boolean-
onFilterDropdownOpenChangeCallback executed when filterDropdownOpen is changedfunction(visible) {}-
onHeaderCellSet props on per header cellfunction(column)-

ColumnGroup

PropertyDescriptionTypeDefault
titleTitle of the column groupReactNode-

pagination

Properties for pagination.

PropertyDescriptionTypeDefault
positionSpecify the position of Pagination, could betopLeft | topCenter | topRight |bottomLeft | bottomCenter | bottomRightArray[bottomRight]

More about pagination, please check Pagination.

expandable

Properties for expandable.

PropertyDescriptionTypeDefaultVersion
childrenColumnNameThe column contains children to displaystringchildren
columnTitleSet the title of the expand columnReactNode-4.23.0
columnWidthSet the width of the expand columnstring | number-
defaultExpandAllRowsExpand all rows initiallybooleanfalse
defaultExpandedRowKeysInitial expanded row keysstring[]-
expandedRowClassNameExpanded row's classNamefunction(record, index, indent): string-
expandedRowKeysCurrent expanded row keysstring[]-
expandedRowRenderExpanded container render for each rowfunction(record, index, indent, expanded): ReactNode-
expandIconCustomize row expand Icon. Ref examplefunction(props): ReactNode-
expandRowByClickWhether to expand row by clicking anywhere in the whole rowbooleanfalse
fixedWhether the expansion icon is fixed. Optional true left rightboolean | stringfalse4.16.0
indentSizeIndent size in pixels of tree datanumber15
rowExpandableEnable row can be expandable(record) => boolean-
showExpandColumnShow expand columnbooleantrue4.18.0
onExpandCallback executed when the row expand icon is clickedfunction(expanded, record)-
onExpandedRowsChangeCallback executed when the expanded rows changefunction(expandedRows)-

rowSelection

Properties for row selection.

PropertyDescriptionTypeDefaultVersion
checkStrictlyCheck table row precisely; parent row and children rows are not associatedbooleantrue4.4.0
columnTitleSet the title of the selection columnReactNode | (originalNode: ReactNode) => ReactNode-
columnWidthSet the width of the selection columnstring | number32px
fixedFixed selection column on the leftboolean-
getCheckboxPropsGet Checkbox or Radio propsfunction(record)-
hideSelectAllHide the selectAll checkbox and custom selectionbooleanfalse4.3.0
preserveSelectedRowKeysKeep selection key even when it removed from dataSourceboolean-4.4.0
renderCellRenderer of the table cell. Same as render in columnfunction(checked, record, index, originNode) {}-4.1.0
selectedRowKeysControlled selected row keysstring[] | number[][]
selectionsCustom selection config, only displays default selections when set to trueobject[] | boolean-
typecheckbox or radiocheckbox | radiocheckbox
onCellSet props on per cell. Same as onCell in columnfunction(record, rowIndex)-5.5.0
onChangeCallback executed when selected rows changefunction(selectedRowKeys, selectedRows, info: { type })-info.type: 4.21.0
onSelectCallback executed when select/deselect one rowfunction(record, selected, selectedRows, nativeEvent)-
onSelectAllCallback executed when select/deselect all rowsfunction(selected, selectedRows, changeRows)-
onSelectInvertCallback executed when row selection is invertedfunction(selectedRowKeys)-
onSelectNoneCallback executed when row selection is clearedfunction()-
onSelectMultipleCallback executed when row selection is changed by pressing shiftfunction(selected, selectedRows, changeRows)-

scroll

PropertyDescriptionTypeDefault
scrollToFirstRowOnChangeWhether to scroll to the top of the table when paging, sorting, filtering changesboolean-
xSet horizontal scrolling, can also be used to specify the width of the scroll area, could be number, percent value, true and 'max-content'string | number | true-
ySet vertical scrolling, can also be used to specify the height of the scroll area, could be string or numberstring | number-

selection

PropertyDescriptionTypeDefault
keyUnique key of this selectionstring-
textDisplay text of this selectionReactNode-
onSelectCallback executed when this selection is clickedfunction(changeableRowKeys)-

Using in TypeScript

import React from 'react';
import { Table } from 'antd';
import type { TableColumnsType } from 'antd';
interface User {
key: number;
name: string;
}
const columns: TableColumnsType<User> = [
{
key: 'name',
title: 'Name',
dataIndex: 'name',
},
];
const data: User[] = [
{
key: 0,
name: 'Jack',
},
];
const Demo: React.FC = () => (
<>
<Table<User> columns={columns} dataSource={data} />
{/* JSX style usage */}
<Table<User> dataSource={data}>
<Table.Column<User> key="name" title="Name" dataIndex="name" />
</Table>
</>
);
export default Demo;

Here is the CodeSandbox for TypeScript.

Design Token

컴포넌트 토큰어떻게 사용하나요?

토큰 이름설명타입기본값
bodySortBg表格排序列背景色string#fafafa
borderColor表格边框/分割线颜色string#f0f0f0
cellFontSize单元格文字大小(默认大尺寸)number14
cellFontSizeMD单元格文字大小(中等尺寸)number14
cellFontSizeSM单元格文字大小(小尺寸)number14
cellPaddingBlock单元格纵向内间距number16
cellPaddingBlockMD单元格纵向内间距(中等尺寸)number12
cellPaddingBlockSM单元格纵向内间距(小尺寸)number8
cellPaddingInline单元格横向内间距(默认大尺寸)number16
cellPaddingInlineMD单元格横向内间距(中等尺寸)number8
cellPaddingInlineSM单元格横向内间距(小尺寸)number8
expandIconBg展开按钮背景色string#ffffff
filterDropdownBg过滤下拉菜单颜色string#ffffff
filterDropdownMenuBg过滤下拉菜单选项背景string#ffffff
fixedHeaderSortActiveBg固定表头排序激活态背景色string#f0f0f0
footerBg表格底部背景色string#fafafa
footerColor表格底部文字颜色stringrgba(0, 0, 0, 0.88)
headerBg表头背景string#fafafa
headerBorderRadius表头圆角number8
headerColor表头文字颜色stringrgba(0, 0, 0, 0.88)
headerFilterHoverBg表头过滤按钮悬浮背景色stringrgba(0, 0, 0, 0.06)
headerSortActiveBg表头排序激活态背景色string#f0f0f0
headerSortHoverBg表头排序激活态悬浮背景色string#f0f0f0
headerSplitColor表头分割线颜色string#f0f0f0
rowExpandedBg表格行展开背景色stringrgba(0, 0, 0, 0.02)
rowHoverBg表格行悬浮背景色string#fafafa
rowSelectedBg表格行选中背景色string#e6f4ff
rowSelectedHoverBg表格行选中悬浮背景色string#bae0ff
selectionColumnWidth选择列宽度string | number32
stickyScrollBarBgSticky 模式下滚动条背景色stringrgba(0, 0, 0, 0.25)
stickyScrollBarBorderRadiusSticky 模式下滚动条圆角number100

글로벌 토큰어떻게 사용하나요?

Note

According to the React documentation, every child in an array should be assigned a unique key. The values inside the Table's dataSource and columns should follow this rule. By default, dataSource[i].key will be treated as the key value for dataSource.

console warning

If dataSource[i].key is not provided, then you should specify the primary key of dataSource value via rowKey, as shown below. If not, warnings like the one above will show in browser console.

// primary key is uid
return <Table rowKey="uid" />;
// or
return <Table rowKey={(record) => record.uid} />;

FAQ

How to hide pagination when single page or no data?

You can set hideOnSinglePage with pagination prop.

Table will return to first page when filter data.

Table total page count usually reduce after filter data, we by default return to first page in case of current page is out of filtered results.

You may need to keep current page after filtering when fetch data from remote service, please check this demo as workaround.

Also you can use the action from extra param to determine when return to first page.

Why Table pagination show size changer?

In order to improve user experience, Pagination show size changer by default when total > 50 since 4.1.0. You can set showSizeChanger=false to disable this feature.

Why Table fully render when state change?

Table can not tell what state used in columns.render, so it always need fully render to avoid sync issue. You can use column.shouldCellUpdate to control render.

How to handle fixed column display over the mask layout?

Fixed column use z-index to make it over other columns. You will find sometime fixed columns also over your mask layout. You can set z-index on your mask layout to resolve.

How to custom render Table Checkbox(For example, adding Tooltip)?

Since 4.1.0, You can use rowSelection.renderCell to custom render Table Checkbox. If you want to add Tooltip, please refer to this demo.

Why does components.body.wrapper or components.body.row report an error when virtual is enabled?

Because virtual table needs to get its ref to do some calculations, so you need to use React.forwardRef wrapper and pass the ref to the dom

Basic Usage
codepen icon
External Link Icon
expand codeexpand code
JSX style API
codepen icon
External Link Icon
expand codeexpand code
selection
codepen icon
External Link Icon
expand codeexpand code
Selection and operation
codepen icon
External Link Icon
expand codeexpand code
Custom selection
codepen icon
External Link Icon
expand codeexpand code
Selection Perf
codepen icon
External Link Icon
expand codeexpand code
Filter and sorter
codepen icon
External Link Icon
expand codeexpand code
Filter in Tree
codepen icon
External Link Icon
expand codeexpand code
Filter search
codepen icon
External Link Icon
expand codeexpand code
Multiple sorter
codepen icon
External Link Icon
expand codeexpand code
Reset filters and sorters
codepen icon
External Link Icon
expand codeexpand code
Customized filter panel
codepen icon
External Link Icon
expand codeexpand code
Ajax
codepen icon
External Link Icon
expand codeexpand code
size
codepen icon
External Link Icon
expand codeexpand code
size
codepen icon
External Link Icon
expand codeexpand code
border, title and footer
codepen icon
External Link Icon
expand codeexpand code
Expandable Row
codepen icon
External Link Icon
expand codeexpand code
Order Specific Column
codepen icon
External Link Icon
expand codeexpand code
colSpan and rowSpan
codepen icon
External Link Icon
expand codeexpand code
Tree data
codepen icon
External Link Icon
expand codeexpand code
Tree data ellipsis debug demo
codepen icon
External Link Icon
expand codeexpand code
Fixed Header
codepen icon
External Link Icon
expand codeexpand code
Fixed Columns
codepen icon
External Link Icon
expand codeexpand code
Stack Fixed Columns
codepen icon
External Link Icon
expand codeexpand code
5.14.0
Fixed Columns and Header
codepen icon
External Link Icon
expand codeexpand code
Hidden Columns
codepen icon
External Link Icon
expand codeexpand code
5.13.0
Grouping table head
codepen icon
External Link Icon
expand codeexpand code
Editable Cells
codepen icon
External Link Icon
expand codeexpand code
Editable Rows
codepen icon
External Link Icon
expand codeexpand code
Nested tables
codepen icon
External Link Icon
expand codeexpand code
Drag sorting
codepen icon
External Link Icon
expand codeexpand code
Drag Column sorting
codepen icon
External Link Icon
expand codeexpand code
Drag sorting with handler
codepen icon
External Link Icon
expand codeexpand code
Resizable column
codepen icon
External Link Icon
expand codeexpand code
ellipsis column
codepen icon
External Link Icon
expand codeexpand code
ellipsis column custom tooltip
codepen icon
External Link Icon
expand codeexpand code
Custom empty
codepen icon
External Link Icon
expand codeexpand code
Summary
codepen icon
External Link Icon
expand codeexpand code
Virtual list
codepen icon
External Link Icon
expand codeexpand code
5.9.0
Responsive
codepen icon
External Link Icon
expand codeexpand code
Nested Bordered Table Debug
codepen icon
External Link Icon
expand codeexpand code
Pagination Settings
codepen icon
External Link Icon
expand codeexpand code
Custom selection group
codepen icon
External Link Icon
expand codeexpand code
Fixed header and scroll bar with the page
codepen icon
External Link Icon
expand codeexpand code
Dynamic Settings
codepen icon
External Link Icon
expand codeexpand code
selections with icon
codepen icon
External Link Icon
expand codeexpand code
Component Token
codepen icon
External Link Icon
expand codeexpand code
NameAgeAddressTagsAction
John Brown32New York No. 1 Lake ParkNICEDEVELOPER
Invite John Brown
Delete
Jim Green42London No. 1 Lake ParkLOSER
Invite Jim Green
Delete
Joe Black32Sydney No. 1 Lake ParkCOOLTEACHER
Invite Joe Black
Delete
  • 1
NameAgeAddressTagsAction
First NameLast Name
JohnBrown32New York No. 1 Lake ParkNICEDEVELOPER
Invite Brown
Delete
JimGreen42London No. 1 Lake ParkLOSER
Invite Green
Delete
JoeBlack32Sydney No. 1 Lake ParkCOOLTEACHER
Invite Black
Delete
  • 1
NameAgeAddress
John Brown32New York No. 1 Lake Park
Jim Green42London No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
Disabled User99Sydney No. 1 Lake Park
  • 1
NameAgeAddress
Edward King 032London, Park Lane no. 0
Edward King 132London, Park Lane no. 1
Edward King 232London, Park Lane no. 2
Edward King 332London, Park Lane no. 3
Edward King 432London, Park Lane no. 4
Edward King 532London, Park Lane no. 5
Edward King 632London, Park Lane no. 6
Edward King 732London, Park Lane no. 7
Edward King 832London, Park Lane no. 8
Edward King 932London, Park Lane no. 9
  • 1
  • 2
  • 3
  • 4
  • 5
NameAgeAddress
Edward King 032London, Park Lane no. 0
Edward King 132London, Park Lane no. 1
Edward King 232London, Park Lane no. 2
Edward King 332London, Park Lane no. 3
Edward King 432London, Park Lane no. 4
Edward King 532London, Park Lane no. 5
Edward King 632London, Park Lane no. 6
Edward King 732London, Park Lane no. 7
Edward King 832London, Park Lane no. 8
Edward King 932London, Park Lane no. 9
  • 1
  • 2
  • 3
  • 4
  • 5
NameAgeAddress
Edward King 032London, Park Lane no. 01
Edward King 132London, Park Lane no. 11
Edward King 232London, Park Lane no. 21
Edward King 332London, Park Lane no. 31
Edward King 432London, Park Lane no. 41
Edward King 532London, Park Lane no. 51
Edward King 632London, Park Lane no. 61
Edward King 732London, Park Lane no. 71
Edward King 832London, Park Lane no. 81
Edward King 932London, Park Lane no. 91
Edward King 1032London, Park Lane no. 101
Edward King 1132London, Park Lane no. 111
Edward King 1232London, Park Lane no. 121
Edward King 1332London, Park Lane no. 131
Edward King 1432London, Park Lane no. 141
Edward King 1532London, Park Lane no. 151
Edward King 1632London, Park Lane no. 161
Edward King 1732London, Park Lane no. 171
Edward King 1832London, Park Lane no. 181
Edward King 1932London, Park Lane no. 191
Edward King 2032London, Park Lane no. 201
Edward King 2132London, Park Lane no. 211
Edward King 2232London, Park Lane no. 221
Edward King 2332London, Park Lane no. 231
Edward King 2432London, Park Lane no. 241
Edward King 2532London, Park Lane no. 251
Edward King 2632London, Park Lane no. 261
Edward King 2732London, Park Lane no. 271
Edward King 2832London, Park Lane no. 281
Edward King 2932London, Park Lane no. 291
Edward King 3032London, Park Lane no. 301
Edward King 3132London, Park Lane no. 311
Edward King 3232London, Park Lane no. 321
Edward King 3332London, Park Lane no. 331
Edward King 3432London, Park Lane no. 341
Edward King 3532London, Park Lane no. 351
Edward King 3632London, Park Lane no. 361
Edward King 3732London, Park Lane no. 371
Edward King 3832London, Park Lane no. 381
Edward King 3932London, Park Lane no. 391
Edward King 4032London, Park Lane no. 401
Edward King 4132London, Park Lane no. 411
Edward King 4232London, Park Lane no. 421
Edward King 4332London, Park Lane no. 431
Edward King 4432London, Park Lane no. 441
Edward King 4532London, Park Lane no. 451
Edward King 4632London, Park Lane no. 461
Edward King 4732London, Park Lane no. 471
Edward King 4832London, Park Lane no. 481
Edward King 4932London, Park Lane no. 491
Name
Age
Address
Jim Green42London No. 1 Lake Park
John Brown32New York No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
Jim Red32London No. 2 Lake Park
  • 1
Name
Age
Address
John Brown32New York No. 1 Lake Park
Jim Green42London No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
Jim Red32London No. 2 Lake Park
  • 1
Name
Age
Address
John Brown32New York No. 1 Lake Park
Jim Green42London No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
Jim Red32London No. 2 Lake Park
  • 1
Name
Chinese Score
Math Score
English Score
John Brown986070
Jim Green986689
Joe Black989070
Jim Red889989
  • 1
Name
Age
Address
John Brown32New York No. 1 Lake Park
Jim Green42London No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
Jim Red32London No. 2 Lake Park
  • 1
Name
Age
Address
John Brown32New York No. 1 Lake Park
Joe Black42London No. 1 Lake Park
Jim Green32Sydney No. 1 Lake Park
Jim Red32London No. 2 Lake Park
  • 1
Name
Gender
Email
Simple Empty
데이터 없음
Middle size table
NameAgeAddress
John Brown32New York No. 1 Lake Park
Jim Green42London No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
  • 1
Small size table
NameAgeAddress
John Brown32New York No. 1 Lake Park
Jim Green42London No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
  • 1
NameAgeAddress
Sample Name30Sample Address 120
Sample Name31Sample Address 121
Sample Name32Sample Address 122
Sample Name33Sample Address 123
Sample Name34Sample Address 124
Sample Name30Sample Address 125
Sample Name31Sample Address 126
Sample Name32Sample Address 127
Sample Name33Sample Address 128
Sample Name34Sample Address 129
  • 1
  • •••
  • 11
  • 12
  • 13
  • 14
  • 15
  • •••
  • 20
  • 10 / 페이지
Header
NameCash AssetsAddress
John Brown¥300,000.00New York No. 1 Lake Park
Jim Green¥1,256,000.00London No. 1 Lake Park
Joe Black¥120,000.00Sydney No. 1 Lake Park
Footer
  • 1
NameAgeAddressAction
John Brown32New York No. 1 Lake ParkDelete
Jim Green42London No. 1 Lake ParkDelete
Not Expandable29Jiangsu No. 1 Lake ParkDelete
Joe Black32Sydney No. 1 Lake ParkDelete
  • 1
NameAge
Address
John Brown32New York No. 1 Lake Park
Jim Green42London No. 1 Lake Park
Not Expandable29Jiangsu No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
  • 1
RowHeadNameAgeHome phoneAddress
1John Brown320571-2209890918889898989New York No. 1 Lake Park
2Jim Green
3Joe Black320575-2209890918900010002Sydney No. 1 Lake Park
4Jim Red180575-2209890918900010002London No. 2 Lake Park
5Jake White1818900010002Dublin No. 2 Lake Park
  • 1
CheckStrictly:
NameAgeAddress
John Brown sr.60New York No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
  • 1
Fixed first column:
NameAgeAddress
John Brown sr. John Brown sr. John Brown sr. John Brown sr. John Brown sr. John Brown sr.60New York No. 1 Lake Park
John Brown sr. John Brown sr. John Brown sr. John Brown sr. John Brown sr. John Brown sr.42New York No. 2 Lake Park
John Brown sr. John Brown sr. John Brown sr. John Brown sr. John Brown sr. John Brown sr.30New York No. 3 Lake Park
John Brown sr. John Brown sr. John Brown sr. John Brown sr. John Brown sr. John Brown sr.16New York No. 3 Lake Park
Jim Green sr. Jim Green sr. Jim Green sr. Jim Green sr.72London No. 1 Lake Park
Jim Green. Jim Green. Jim Green. Jim Green. Jim Green. Jim Green.42London No. 2 Lake Park
Jim Green jr. Jim Green jr. Jim Green jr. Jim Green jr.25London No. 3 Lake Park
Jimmy Green sr. Jimmy Green sr. Jimmy Green sr.18London No. 4 Lake Park
Joe Black32Sydney No. 1 Lake Park
  • 1
NameAgeAddress
 
 
 
Edward King 032London, Park Lane no. 0
Edward King 132London, Park Lane no. 1
Edward King 232London, Park Lane no. 2
Edward King 332London, Park Lane no. 3
Edward King 432London, Park Lane no. 4
Edward King 532London, Park Lane no. 5
Edward King 632London, Park Lane no. 6
Edward King 732London, Park Lane no. 7
Edward King 832London, Park Lane no. 8
Edward King 932London, Park Lane no. 9
Edward King 1032London, Park Lane no. 10
Edward King 1132London, Park Lane no. 11
Edward King 1232London, Park Lane no. 12
Edward King 1332London, Park Lane no. 13
Edward King 1432London, Park Lane no. 14
Edward King 1532London, Park Lane no. 15
Edward King 1632London, Park Lane no. 16
Edward King 1732London, Park Lane no. 17
Edward King 1832London, Park Lane no. 18
Edward King 1932London, Park Lane no. 19
Edward King 2032London, Park Lane no. 20
Edward King 2132London, Park Lane no. 21
Edward King 2232London, Park Lane no. 22
Edward King 2332London, Park Lane no. 23
Edward King 2432London, Park Lane no. 24
Edward King 2532London, Park Lane no. 25
Edward King 2632London, Park Lane no. 26
Edward King 2732London, Park Lane no. 27
Edward King 2832London, Park Lane no. 28
Edward King 2932London, Park Lane no. 29
Edward King 3032London, Park Lane no. 30
Edward King 3132London, Park Lane no. 31
Edward King 3232London, Park Lane no. 32
Edward King 3332London, Park Lane no. 33
Edward King 3432London, Park Lane no. 34
Edward King 3532London, Park Lane no. 35
Edward King 3632London, Park Lane no. 36
Edward King 3732London, Park Lane no. 37
Edward King 3832London, Park Lane no. 38
Edward King 3932London, Park Lane no. 39
Edward King 4032London, Park Lane no. 40
Edward King 4132London, Park Lane no. 41
Edward King 4232London, Park Lane no. 42
Edward King 4332London, Park Lane no. 43
Edward King 4432London, Park Lane no. 44
Edward King 4532London, Park Lane no. 45
Edward King 4632London, Park Lane no. 46
Edward King 4732London, Park Lane no. 47
Edward King 4832London, Park Lane no. 48
Edward King 4932London, Park Lane no. 49
  • 1
  • 2
  • 50 / 페이지
Full Name
Age
Column 1Column 2Column 3Column 4Column 5Column 6Column 7Column 8Column 9Column 10Column 11Column 12Column 13Column 14Column 15Column 16Column 17Column 18Column 19Column 20Action
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Olivia32New York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York Parkaction
Ethan40London ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon Parkaction
Full NameAgeColumn 1Column 2Column 3Column 4Column 5Column 6Column 7Column 8Column 9Column 10Column 11Column 12Column 13Column 14Column 15Column 16Column 17Column 18Column 19Column 20Action 1Action 2Action 3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Olivia32New York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York Parkactionactionaction
Ethan40London ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon Parkactionactionaction
Full NameAgeColumn 1Column 2Column 3Column 4Column 5Column 6Column 7Column 8Column 9Column 10Column 11Column 12Column 13Column 14Column 15Column 16Column 17Column 18Column 19Column 20Action
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Edward King 032London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0London, Park Lane no. 0action
Edward King 132London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1London, Park Lane no. 1action
Edward King 232London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2London, Park Lane no. 2action
Edward King 332London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3London, Park Lane no. 3action
Edward King 432London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4London, Park Lane no. 4action
Edward King 532London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5London, Park Lane no. 5action
Edward King 632London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6London, Park Lane no. 6action
Edward King 732London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7London, Park Lane no. 7action
Edward King 832London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8London, Park Lane no. 8action
Edward King 932London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9London, Park Lane no. 9action
  • 1
  • 2
  • 3
  • 4
  • 5
  • •••
  • 10
  • 10 / 페이지
Columns displayed
Column 1Column 2Column 3Column 4Column 5Column 6Column 7Column 8
New York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York ParkNew York Park
London ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon ParkLondon Park
  • 1
Name
OtherCompanyGender
Age
AddressCompany AddressCompany Name
StreetBlock
BuildingDoor No.
 
 
 
 
 
 
 
 
John Brown1Lake ParkC2035Lake Street 42SoftLake CoM
John Brown2Lake ParkC2035Lake Street 42SoftLake CoM
John Brown3Lake ParkC2035Lake Street 42SoftLake CoM
John Brown4Lake ParkC2035Lake Street 42SoftLake CoM
John Brown5Lake ParkC2035Lake Street 42SoftLake CoM
John Brown6Lake ParkC2035Lake Street 42SoftLake CoM
John Brown7Lake ParkC2035Lake Street 42SoftLake CoM
John Brown8Lake ParkC2035Lake Street 42SoftLake CoM
John Brown9Lake ParkC2035Lake Street 42SoftLake CoM
John Brown10Lake ParkC2035Lake Street 42SoftLake CoM
  • 1
  • 2
  • 3
  • 4
  • 5
  • •••
  • 10
  • 10 / 페이지
nameageaddressoperation
Edward King 0
32London, Park Lane no. 0Delete
Edward King 1
32London, Park Lane no. 1Delete
  • 1
nameageaddressoperation
Edward 032London Park no. 0Edit
Edward 132London Park no. 1Edit
Edward 232London Park no. 2Edit
Edward 332London Park no. 3Edit
Edward 432London Park no. 4Edit
Edward 532London Park no. 5Edit
Edward 632London Park no. 6Edit
Edward 732London Park no. 7Edit
Edward 832London Park no. 8Edit
Edward 932London Park no. 9Edit
  • 1
  • 2
  • 3
  • 4
  • 5
  • •••
  • 10
  • 10 / 페이지
NamePlatformVersionUpgradedCreatorDateAction
ScreeniOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
DateNameStatusUpgrade StatusAction
2014-12-24 23:12:00This is production nameFinishedUpgraded: 56
Pause
Stop
More
2014-12-24 23:12:00This is production nameFinishedUpgraded: 56
Pause
Stop
More
2014-12-24 23:12:00This is production nameFinishedUpgraded: 56
Pause
Stop
More
ScreeniOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
ScreeniOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
  • 1
NamePlatformVersionUpgradedCreatorDateAction
ScreeniOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
DateNameStatusUpgrade StatusAction
2014-12-24 23:12:00This is production nameFinishedUpgraded: 56
Pause
Stop
More
2014-12-24 23:12:00This is production nameFinishedUpgraded: 56
Pause
Stop
More
2014-12-24 23:12:00This is production nameFinishedUpgraded: 56
Pause
Stop
More
ScreeniOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
ScreeniOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
  • 1
NamePlatformVersionUpgradedCreatorDateAction
ScreeniOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
DateNameStatusUpgrade StatusAction
2014-12-24 23:12:00This is production nameFinishedUpgraded: 56
Pause
Stop
More
2014-12-24 23:12:00This is production nameFinishedUpgraded: 56
Pause
Stop
More
2014-12-24 23:12:00This is production nameFinishedUpgraded: 56
Pause
Stop
More
ScreeniOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
ScreeniOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
  • 1
NameAgeAddress
John Brown32Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text
Jim Green42London No. 1 Lake Park
Joe Black32Sidney No. 1 Lake Park
  • 1
NameGenderAgeEmailAddress
John Brownmale32John Brown@example.comLondon No. 1 Lake Park
Jim Greenfemale42jimGreen@example.comLondon No. 1 Lake Park
Joe Blackfemale32JoeBlack@example.comSidney No. 1 Lake Park
George Hccmale20george@example.comSidney No. 1 Lake Park
  • 1
NameAgeAddress
John Brown32Long text Long
Jim Green42London No. 1 Lake Park
Joe Black32Sidney No. 1 Lake Park
  • 1
Date
Amount
TypeNoteAction
2018-02-11120incometransferDelete
2018-03-11243incometransferDelete
2018-04-1198incometransferDelete
  • 1
NameAgeAddressLong Column Long Column Long ColumnLong Column Long ColumnLong Column
John Brown32New York No. 1 Lake Park, New York No. 1 Lake ParkNew York No. 1 Lake Park, New York No. 1 Lake ParkNew York No. 1 Lake Park, New York No. 1 Lake ParkNew York No. 1 Lake Park, New York No. 1 Lake Park
Jim Green42London No. 2 Lake Park, London No. 2 Lake ParkLondon No. 2 Lake Park, London No. 2 Lake ParkLondon No. 2 Lake Park, London No. 2 Lake ParkLondon No. 2 Lake Park, London No. 2 Lake Park
Joe Black32Sydney No. 1 Lake Park, Sydney No. 1 Lake ParkSydney No. 1 Lake Park, Sydney No. 1 Lake ParkSydney No. 1 Lake Park, Sydney No. 1 Lake ParkSydney No. 1 Lake Park, Sydney No. 1 Lake Park
  • 1
NameAgeAddressLong Column Long Column Long ColumnLong Column Long ColumnLong Column
John Brown32New York No. 1 Lake Park, New York No. 1 Lake ParkNew York No. 1 Lake Park, New York No. 1 Lake ParkNew York No. 1 Lake Park, New York No. 1 Lake ParkNew York No. 1 Lake Park, New York No. 1 Lake Park
Jim Green42London No. 2 Lake Park, London No. 2 Lake ParkLondon No. 2 Lake Park, London No. 2 Lake ParkLondon No. 2 Lake Park, London No. 2 Lake ParkLondon No. 2 Lake Park, London No. 2 Lake Park
Joe Black32Sydney No. 1 Lake Park, Sydney No. 1 Lake ParkSydney No. 1 Lake Park, Sydney No. 1 Lake ParkSydney No. 1 Lake Park, Sydney No. 1 Lake ParkSydney No. 1 Lake Park, Sydney No. 1 Lake Park
  • 1
Name
Age
Address
Edward King 032London, Park Lane no. 0
Edward King 133London, Park Lane no. 1
Edward King 234London, Park Lane no. 2
Edward King 335London, Park Lane no. 3
Edward King 436London, Park Lane no. 4
  • 1
NameBorrowRepayment
John Brown1033
Jim Green1000
Joe Black1010
Jim Red7545
Total19588
Balance107
NameDescription
 
 
LightEverything that has a beginning, has an end.
BambooEverything that has a beginning, has an end.
LittleEverything that has a beginning, has an end.
LightEverything that has a beginning, has an end.
BambooEverything that has a beginning, has an end.
LittleEverything that has a beginning, has an end.
LightEverything that has a beginning, has an end.
BambooEverything that has a beginning, has an end.
LittleEverything that has a beginning, has an end.
LightEverything that has a beginning, has an end.
BambooEverything that has a beginning, has an end.
LittleEverything that has a beginning, has an end.
LightEverything that has a beginning, has an end.
BambooEverything that has a beginning, has an end.
LittleEverything that has a beginning, has an end.
LightEverything that has a beginning, has an end.
BambooEverything that has a beginning, has an end.
LittleEverything that has a beginning, has an end.
LightEverything that has a beginning, has an end.
BambooEverything that has a beginning, has an end.
SummaryThis is a summary content
IDFistNameLastNameGroupAgeAddress 1Address 2Address 3Action
0
First_0
Last_0
25
London No. 0 Lake Park
Sydney No. 0 Lake Park
Action1
Action2
1
First_1
Last_1
26
New York No. 1 Lake Park
London No. 1 Lake Park
Sydney No. 1 Lake Park
Action1
Action2
2
First_2
Last_2
27
New York No. 2 Lake Park
London No. 2 Lake Park
Sydney No. 2 Lake Park
Action1
Action2
3
First_3
Last_3
28
New York No. 3 Lake Park
London No. 3 Lake Park
Sydney No. 3 Lake Park
Action1
Action2
4
First_4
Last_4
29
London No. 4 Lake Park
Sydney No. 4 Lake Park
Action1
Action2
5
First_5
Last_5
30
New York No. 5 Lake Park
London No. 5 Lake Park
Sydney No. 5 Lake Park
Action1
Action2
6
First_6
Last_6
31
New York No. 6 Lake Park
London No. 6 Lake Park
Sydney No. 6 Lake Park
Action1
Action2
7
First_7
Last_7
32
New York No. 7 Lake Park
London No. 7 Lake Park
Sydney No. 7 Lake Park
Action1
Action2
8
First_8
Last_8
33
London No. 8 Lake Park
Sydney No. 8 Lake Park
Action1
Action2
9
First_9
Last_9
34
New York No. 9 Lake Park
London No. 9 Lake Park
Sydney No. 9 Lake Park
Action1
Action2
Group 0
Group 1
Group 2
Name (all screens)
John Brown
  • 1
cool
NamePlatformVersionUpgradedCreatorDateAction
ScreemiOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
ScreemiOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
ScreemiOS10.3.4.5654500Jack2014-12-24 23:12:00Publish
cool
  • 1
  • 1
NameAgeAddressTagsAction
John Brown32New York No. 1 Lake ParkNICEDEVELOPER
Invite John Brown
Delete
Jim Green42London No. 1 Lake ParkLOSER
Invite Jim Green
Delete
Joe Black32Sydney No. 1 Lake ParkCOOLTEACHER
Invite Joe Black
Delete
  • 1
Name
false: Edward King 0
Another Row
false: Edward King 2
Another Row
false: Edward King 4
Another Row
false: Edward King 6
Another Row
false: Edward King 8
Another Row
  • 1
  • 2
  • 3
  • 4
  • 5
Full NameAgeColumn 1Column 2Column 3Column 4Column 5Column 6Column 7Column 8Action
 
 
 
 
 
 
 
 
 
 
 
Edward 032London Park no. 0London Park no. 0London Park no. 0London Park no. 0London Park no. 0London Park no. 0London Park no. 0London Park no. 0action
Edward 132London Park no. 1London Park no. 1London Park no. 1London Park no. 1London Park no. 1London Park no. 1London Park no. 1London Park no. 1action
Edward 232London Park no. 2London Park no. 2London Park no. 2London Park no. 2London Park no. 2London Park no. 2London Park no. 2London Park no. 2action
Edward 332London Park no. 3London Park no. 3London Park no. 3London Park no. 3London Park no. 3London Park no. 3London Park no. 3London Park no. 3action
Edward 432London Park no. 4London Park no. 4London Park no. 4London Park no. 4London Park no. 4London Park no. 4London Park no. 4London Park no. 4action
Edward 532London Park no. 5London Park no. 5London Park no. 5London Park no. 5London Park no. 5London Park no. 5London Park no. 5London Park no. 5action
Edward 632London Park no. 6London Park no. 6London Park no. 6London Park no. 6London Park no. 6London Park no. 6London Park no. 6London Park no. 6action
Edward 732London Park no. 7London Park no. 7London Park no. 7London Park no. 7London Park no. 7London Park no. 7London Park no. 7London Park no. 7action
Edward 832London Park no. 8London Park no. 8London Park no. 8London Park no. 8London Park no. 8London Park no. 8London Park no. 8London Park no. 8action
Edward 932London Park no. 9London Park no. 9London Park no. 9London Park no. 9London Park no. 9London Park no. 9London Park no. 9London Park no. 9action
Scroll ContextFix Right
  • 1
  • 2
  • 3
  • 4
  • 5
  • •••
  • 10
  • 10 / 페이지
Name
Age
Address
Action
John Brown2New York No. 0 Lake Park
Delete
More actions
John Brown12New York No. 1 Lake Park
Delete
More actions
John Brown22New York No. 2 Lake Park
Delete
More actions
John Brown32New York No. 3 Lake Park
Delete
More actions
John Brown42New York No. 4 Lake Park
Delete
More actions
John Brown52New York No. 5 Lake Park
Delete
More actions
John Brown62New York No. 6 Lake Park
Delete
More actions
John Brown72New York No. 7 Lake Park
Delete
More actions
John Brown82New York No. 8 Lake Park
Delete
More actions
John Brown92New York No. 9 Lake Park
Delete
More actions
Here is footer
  • 1
NameAgeAddress
John Brown32New York No. 1 Lake Park
Jim Green42London No. 1 Lake Park
Joe Black32Sydney No. 1 Lake Park
  • 1
Name
Age
Address
Action
John Brown2New York No. 0 Lake Park
Delete
More actions
John Brown12New York No. 1 Lake Park
Delete
More actions
John Brown22New York No. 2 Lake Park
Delete
More actions
John Brown32New York No. 3 Lake Park
Delete
More actions
John Brown42New York No. 4 Lake Park
Delete
More actions
John Brown52New York No. 5 Lake Park
Delete
More actions
John Brown62New York No. 6 Lake Park
Delete
More actions
John Brown72New York No. 7 Lake Park
Delete
More actions
John Brown82New York No. 8 Lake Park
Delete
More actions
John Brown92New York No. 9 Lake Park
Delete
More actions
Here is footer
  • 1