示例优化
This commit is contained in:
parent
18084f1ad9
commit
4e7f143aeb
|
@ -17,8 +17,7 @@ const columns = [
|
|||
width:'50',
|
||||
render:(text,record,index)=>{
|
||||
return index
|
||||
},
|
||||
fixed:'left'
|
||||
}
|
||||
},
|
||||
{
|
||||
title: "用户名", dataIndex: "a", key: "a", width: 580, className: "rowClassName",
|
||||
|
@ -38,28 +37,8 @@ const columns = [
|
|||
}
|
||||
},
|
||||
{ id: "123", title: "性别", dataIndex: "b", key: "b", width: 80},
|
||||
{ title: "年龄", dataIndex: "c", key: "c", width: 200 },
|
||||
{
|
||||
title: "操作",
|
||||
dataIndex: "d",
|
||||
key: "d",
|
||||
fixed:'right',
|
||||
render(text, record, index) {
|
||||
return (
|
||||
<div style={{ position: 'relative' }} title={text} >
|
||||
<a
|
||||
href="javascript:;"
|
||||
tooltip={text}
|
||||
onClick={() => {
|
||||
alert('这是第' + index + '列,内容为:' + text);
|
||||
}}
|
||||
>
|
||||
一些操作
|
||||
</a>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
{ title: "年龄", dataIndex: "c", key: "c", width: 200 }
|
||||
|
||||
];
|
||||
|
||||
const data = [ ...new Array(10000) ].map((e, i) => {
|
||||
|
|
|
@ -24,8 +24,7 @@ const columns = [
|
|||
width:'50',
|
||||
render:(text,record,index)=>{
|
||||
return index
|
||||
},
|
||||
fixed:'left'
|
||||
}
|
||||
},
|
||||
{
|
||||
title: "用户名", dataIndex: "a", key: "a", width: 580, className: "rowClassName",
|
||||
|
@ -45,28 +44,7 @@ const columns = [
|
|||
}
|
||||
},
|
||||
{ id: "123", title: "性别", dataIndex: "b", key: "b", width: 80},
|
||||
{ title: "年龄", dataIndex: "c", key: "c", width: 200 },
|
||||
{
|
||||
title: "操作",
|
||||
dataIndex: "d",
|
||||
key: "d",
|
||||
fixed:'right',
|
||||
render(text, record, index) {
|
||||
return (
|
||||
<div style={{ position: 'relative' }} title={text} >
|
||||
<a
|
||||
href="javascript:;"
|
||||
tooltip={text}
|
||||
onClick={() => {
|
||||
alert('这是第' + index + '列,内容为:' + text);
|
||||
}}
|
||||
>
|
||||
一些操作
|
||||
</a>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
{ title: "年龄", dataIndex: "c", key: "c", width: 200 }
|
||||
];
|
||||
|
||||
const data = [ ...new Array(10000) ].map((e, i) => {
|
||||
|
|
|
@ -1,118 +0,0 @@
|
|||
/**
|
||||
*
|
||||
* @title 快捷键在table中的简单使用应用。
|
||||
* @description tab 键可以默认选中第一行、up 选中上一条、down 选中下一条 更多api 见文档说明。
|
||||
*/
|
||||
|
||||
import React, { Component } from "react";
|
||||
import Button from "bee-button";
|
||||
import Tooltip from "bee-tooltip";
|
||||
import Table from "../../src";
|
||||
import Checkbox from 'bee-checkbox';
|
||||
|
||||
const columns = [
|
||||
{
|
||||
title: "",
|
||||
dataIndex: "d",
|
||||
fixed: "left",
|
||||
key: "d",
|
||||
width:80,
|
||||
render(text, record, index) {
|
||||
return (
|
||||
<div style={{ position: 'relative' }} title={text} >
|
||||
<Checkbox />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
},
|
||||
{ title: "用户名", dataIndex: "a", key: "a", width:80 , className:"rowClassName"},
|
||||
{ id: "123", title: "性别", dataIndex: "b", key: "b", width: 100 },
|
||||
{ title: "年龄", dataIndex: "c", key: "c", width: 200 }
|
||||
];
|
||||
|
||||
const data = [
|
||||
{ a: "令狐冲", b: "男", c: 41,d:'操作', key: "1" },
|
||||
{ a: "杨过叔叔的女儿黄蓉", b: "男", c: 67,d:'操作', key: "2" },
|
||||
{ a: "郭靖", b: "男", c: 25,d:'操作', key: "3" }
|
||||
];
|
||||
|
||||
class Demo33 extends Component {
|
||||
|
||||
constructor(props){
|
||||
super(props);
|
||||
this.state = {
|
||||
data: data,
|
||||
selectedRowIndex: 2
|
||||
}
|
||||
}
|
||||
|
||||
onKeyTab=()=>{
|
||||
let {selectedRowIndex} = this.state;
|
||||
// let count = selectedRowIndex;//(selectedRowIndex+1);
|
||||
// count == (data.length-1)?count = -1:count;
|
||||
// this.setState({
|
||||
// selectedRowIndex: (count+1)
|
||||
// })
|
||||
console.log(" ---onKeyTab---- ",selectedRowIndex);
|
||||
this.setState({
|
||||
selectedRowIndex: 0
|
||||
})
|
||||
}
|
||||
|
||||
onKeyUp=()=>{
|
||||
let {selectedRowIndex} = this.state;
|
||||
let count = selectedRowIndex;
|
||||
let len = (data.length-1);
|
||||
count = count == 0?count = len:(count-1);
|
||||
this.setState({
|
||||
selectedRowIndex: count
|
||||
})
|
||||
}
|
||||
|
||||
onKeyDown=()=>{
|
||||
let {selectedRowIndex} = this.state;
|
||||
let count = selectedRowIndex;
|
||||
count == (data.length-1)?count = -1:(count+1);
|
||||
this.setState({
|
||||
selectedRowIndex: (count+1)
|
||||
})
|
||||
}
|
||||
|
||||
onTableKeyDown = ()=>{
|
||||
let {selectedRowIndex} = this.state;
|
||||
console.log(" ----onTabkeKeyDown--- ",selectedRowIndex);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
<input />
|
||||
<Table
|
||||
columns={columns}
|
||||
data={data}
|
||||
rowClassName={(record,index,indent)=>{
|
||||
if (this.state.selectedRowIndex == index) {
|
||||
return 'selected';
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}}
|
||||
onRowClick={(record,index,indent)=>{
|
||||
this.setState({
|
||||
selectedRowIndex: index
|
||||
});
|
||||
}}
|
||||
onKeyTab={this.onKeyTab}
|
||||
onKeyUp={this.onKeyUp}
|
||||
onKeyDown={this.onKeyDown}
|
||||
onTableKeyDown={this.onTableKeyDown}
|
||||
scroll={{ x: "110%", y: 140 }}
|
||||
focusable = {true}
|
||||
/>
|
||||
<input />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default Demo33;
|
|
@ -37,28 +37,7 @@ const columns = [
|
|||
}
|
||||
},
|
||||
{ id: "123", title: "性别", dataIndex: "b", key: "b", width: 80},
|
||||
{ title: "年龄", dataIndex: "c", key: "c", width: 200 },
|
||||
{
|
||||
title: "操作",
|
||||
dataIndex: "d",
|
||||
key: "d",
|
||||
fixed:'right',
|
||||
render(text, record, index) {
|
||||
return (
|
||||
<div style={{ position: 'relative' }} title={text} >
|
||||
<a
|
||||
href="javascript:;"
|
||||
tooltip={text}
|
||||
onClick={() => {
|
||||
alert('这是第' + index + '列,内容为:' + text);
|
||||
}}
|
||||
>
|
||||
一些操作
|
||||
</a>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
{ title: "年龄", dataIndex: "c", key: "c", width: 200 }
|
||||
];
|
||||
|
||||
const data = [ ...new Array(1000) ].map((e, i) => {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue