jspreadsheet / ce

Jspreadsheet is a lightweight vanilla javascript plugin to create amazing web-based interactive tables and spreadsheets compatible with other spreadsheet software.
https://bossanova.uk/jspreadsheet/v4
MIT License
6.77k stars 828 forks source link

Edit header directly in table #1372

Closed html5maker closed 3 years ago

html5maker commented 3 years ago

How is it possible to disable sort functionality and simply allow to edit header directly using the input?

GBonnaire commented 3 years ago

Hi,

for disable sorting, use columnSorting:falsein option

var myTable = jspreadsheet(DOMElement, {
    columnSorting:true,
}

for header rename, if you want not use prompt system, you can make your form and use myTable.setHeader(columnIndex, "My new name");