私は以下のようなhandsontableを持っています
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>
テーブルの tr 値にアクセスできます
var rowList = $("#example1").handsontable("getData");
rowList = $.grep(rowList,function(array,index)
{
// here i can access values from first row
});
「Sun」、「Mon」、「Tue」、「Wed」、「Thrs」、「Fri」、「Sat」というヘッダーにアクセスする必要があります。助けてください..