i have a handsontable like below
var $container = $("#example1");
$container.handsontable({
data: data1,
rowHeaders:true,
colHeaders: ["Sun","Mon","Tue","Wed","Thr","Fri","Sat"],
cols:13,
minSpareRows: 100
});
<div id="example1" class="dataTable" style="width: 1170px; height: 450px;
overflow:scroll;"></div>
i can access table tr values
var rowList = $("#example1").handsontable("getData");
rowList = $.grep(rowList,function(array,index)
{
// here i can access values from first row
});
I need to access headers "Sun","Mon","Tue","Wed","Thrs","Fri","Sat" How to do this...? ple help ..
i have a handsontable like below
var $container = $("#example1");
$container.handsontable({
data: data1,
rowHeaders:true,
colHeaders: ["Sun","Mon","Tue","Wed","Thr","Fri","Sat"],
cols:13,
minSpareRows: 100
});
<div id="example1" class="dataTable" style="width: 1170px; height: 450px;
overflow:scroll;"></div>
i can access table tr values
var rowList = $("#example1").handsontable("getData");
rowList = $.grep(rowList,function(array,index)
{
// here i can access values from first row
});
I need to access headers "Sun","Mon","Tue","Wed","Thrs","Fri","Sat" How to do this...? ple help ..
Share Improve this question asked Jul 25, 2013 at 5:28 BoopathiBoopathi 2261 gold badge4 silver badges18 bronze badges2 Answers
Reset to default 5Just use:
hotInstance.getColHeader()
Source: https://docs.handsontable./pro/5.0.2/Core.html#getColHeader
I edited this:
var rowHeaderList = $("#example1").handsontable("getRowHeader"); //for row headers
var colHeaderList = $("#example1").handsontable("getColHeader"); //for column headers