我正在使用jquery-handsontable来创建数据网格。
如果我做
$("#example1grid").handsontable('setDataAtCell', 0, 0,"test")
$("#example1grid").handsontable("setCellReadOnly", 0, 0);
它会更改文本,但是当我点击时我可以编辑它。为什么呢?
以下是测试http://jsfiddle.net/z9fYC/59/ 无论如何,如果我想让所有列号0都是只读的呢?
答案 0 :(得分:7)
它确实看起来像一个bug。根据文档,你做了什么应该工作。
无论如何,要解决此问题,您可以逐个单元地定义只读行为,如下所示:
$("#example1grid").handsontable({
rows: 5,
cols: 6,
minSpareCols: 1,
//always keep at least 1 spare row at the right
minSpareRows: 1,
//always keep at least 1 spare row at the bottom
contextMenu: true,
cells: function(r,c, prop) {
var cellProperties = {};
if (r===0 && c===0) cellProperties.readOnly = true;
return cellProperties;
}
});
答案 1 :(得分:4)
这确实是Handsontable中的一个错误。从版本0.7.3开始修复