smartTable icon indicating copy to clipboard operation
smartTable copied to clipboard

统计行的第一列文字显示能够自定义吗? 现在显示的是行数

Open xuejiawang opened this issue 5 years ago • 1 comments

xuejiawang avatar Oct 21 '20 09:10 xuejiawang

tableData.setYSequenceFormat(new NumberSequenceFormat() { @Override public String format(Integer position) { if (position == 1) { return "序号"; } return super.format(position - 1); } });

yebin254126 avatar Jul 24 '21 14:07 yebin254126