We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5c5aeed + 62bf158 commit 19acc71Copy full SHA for 19acc71
src/datamanager.js
@@ -70,7 +70,7 @@ export default class DataManager {
70
if (this.options.serialNoColumn && !this.hasColumnById('_rowIndex')) {
71
let cell = {
72
id: '_rowIndex',
73
- content: '',
+ content: this.options.serialNoColumnLabel || '',
74
align: 'center',
75
editable: false,
76
resizable: false,
src/defaults.js
@@ -54,6 +54,7 @@ export default function getDefaultOptions(instance) {
54
freezeMessage: '',
55
getEditor: null,
56
serialNoColumn: true,
57
+ serialNoColumnLabel: '',
58
checkboxColumn: false,
59
clusterize: true,
60
logs: false,
0 commit comments