最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to get table header name in handsontable - Stack Overflow

programmeradmin4浏览0评论

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 badges
Add a ment  | 

2 Answers 2

Reset to default 5

Just 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
发布评论

评论列表(0)

  1. 暂无评论