In handsontable mode, if there is a similar column header, the cell value of the first column is automatically copied to another similar cell

Whenever I enter a value in the first cell, the same value is automatically copied to the header cell with the same name. How can we stop this. I tried to solve this problem, but could not find a suitable solution.

Here is the code

$.ajax({ type: "POST", async: false, url: url, data: data, success: function (res) { grid = new Handsontable(container, { data: [], rowHeaders: true, autowidth: false, autoRowSize:true, maxRows: 100, minRows: 15, width: 'auto', height: 420, stretchH: 'all', //this is used to cover the full div overflow: 'hidden', colHeaders: res.data.header, columns: res.data.renderer, fillHandle: { autoInsertRow: false }, minSpareRows: 1, }); } }); 

enter image description here

Update Here is json used to create headers and list

 <iframe src="https://pastebin.com/embed_iframe/ind7Savd" style="border:none;width:100%"></iframe> 
+8
javascript jquery php handsontable
source share

No one has answered this question yet.

See related questions:

7
Prevent user-selected cells from clicking on a column heading
6
Conditionally select a row in handsontable mode based on cell value
2
how to make column width susceptible to jsgrid content
one
How do I format column headers in a user-friendly way?
one
How to add a button to all cells in a column in manual mode?
one
Custom HTML rotation in a manual column header
one
Inverse column header and row in handsontable mode
one
Select Arrow Labels
0
Convenient loading without dynamically created column headers
0
Disable the first two columns in handsontable mode

All Articles