我只想根据内容删除单元格的值。如果内容为0,我想在尝试编辑时将其删除。所以我选择了beforeEditCell事件并尝试以这种方式删除内容。
beforeEditCell:function(rowid, cellname, value, iRow, iCol){
if(value == 0) value = '';
},
我用警报对其进行了测试,以便事件触发警报,但我不知道如何删除旧内容。
答案 0 :(得分:0)
来自的例子 http://www.trirand.com/blog/?page_id=393/help/set-cell-value-to-empty/
(他们将值更改为空)
setCell("10″, "tax", '', {color:'red','text-align':'center'}',{title:'Sales Tax'}))