700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > antd 设置表头属性_使用表数据自定义React Antd表头

antd 设置表头属性_使用表数据自定义React Antd表头

时间:2019-10-12 03:08:07

相关推荐

antd 设置表头属性_使用表数据自定义React Antd表头

In my React project, I need to customize antd table header as follows

I have added sample code bellow.

I need to have Sum of the amount in the header of the Amount column

Sample Code:

解决方案

You can use title function like this for get total of amount fields

const columns = [

{

title: () => {

var total = 0;

for(var i=0;i

total += data[i].amount;

}

return

total {total};

} ,

dataIndex: "date",

width: 200

},

{

title: "Amount",

dataIndex: "amount",

width: 100

}

];

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。