我有一个我正在使用函数
的handontablecells: 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)
答案 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