Row numbers in left border colums

Tags: #<Tag:0x00007f0b02dc8f20>

Numbers in left (blue) border are displaying numbers from 1 . My obbjectiv is to diisplay own data (in my case datsete ids from db). ANy ideas?

Hi @Knoeterich

Do you mean the rowHeaders? If so it can be an array or a function. Here https://handsontable.com/docs/api/options/#rowheaders is an example of a function that returns index and a string to a header label

rowHeaders: function(visualRowIndex) {
  return `${visualRowIndex}: AB`;
},