Handsontable 如何读取单元格内的单元格值:function (row, col, prop) 函数
Posted
技术标签:
【中文标题】Handsontable 如何读取单元格内的单元格值:function (row, col, prop) 函数【英文标题】:Handsontable how to read cell values inside cells: function (row, col, prop) function 【发布时间】:2016-05-12 17:55:12 【问题描述】:我有一个我正在使用该功能的handsontable
cells: function (row, col, prop)
var cellProperties;
//Read values
return cellProperties;
我有5 rows and 4 columns
。
我想读取值R1C4, R1C4, R1C3,R1C4
。函数内部cells: function (row, col, prop)
。
如何使用cells: function (row, col, prop)
读取单元格值
【问题讨论】:
【参考方案1】:cells: function (row, col, prop)
var cellProperties;
//Read values
var someVar = this.getData(1, 4, 1, 4); //getData take data from an init to an end, just like select cells in Excel
console.log(someVar);
return cellProperties;
使用 this 调用 HandsOnTables 的任何函数。 欲了解更多信息,您应该去Docs #getData
【讨论】:
以上是关于Handsontable 如何读取单元格内的单元格值:function (row, col, prop) 函数的主要内容,如果未能解决你的问题,请参考以下文章
如果前一个单元格具有值 HandsOnTable,如何将单元格更改为非活动状态
使用 Handsontable 时如何强制选定单元格进入编辑模式?