huangyanbin/smartTable

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

xuejiawang opened this issue · 1 comments

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

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