Get source data sorted by column

It’s possible to get source data sorted by column?

In example below you see Handsontable sorted by column “B” and getSourceData()[0] function returns [“A1”, “B1”, “C1”, “D1”, “E1”] and I need to return [“A9”, “B9”, “C9”, “D9”, “E9”].

you have jsfiddle here:

Any help?

Best regards,

dit

Hi @dit
getSourceData return always the source array.
If you want to get recent data you need to call getData method instead.