Support separate databases/schemas/table prefix for instances

rel-1.0
Vitaliy Filippov 2016-03-17 15:47:46 +03:00
parent 47d43c34b4
commit 61a5c3901b
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ TreeGrid.prototype.stopCellEditing = function(td, _int)
{
var i = this.getNodeIndex(td);
var params = this.onStopCellEdit && this.onStopCellEdit(td.parentNode._node, i, td.firstChild.value, td) || {};
td.innerHTML = params.html || td.firstChild.value;
td.innerHTML = params.html === undefined || params.html === null ? td.firstChild.value : params.html;
if (typeof td.parentNode._node.cells[i] == 'object')
td.parentNode._node.cells[i].innerHTML = td.innerHTML;
else