Handsontable如何读取单元格内的单元格值:function(row,col,prop)函数

时间:2016-02-03 13:40:22

标签: jquery cell handsontable tr

我有一个我正在使用函数

的handontable
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 个答案:

答案 0 :(得分:-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