From eee525a80b0d15691f81746341073b2992d00848 Mon Sep 17 00:00:00 2001 From: j Date: Tue, 14 Feb 2017 16:04:20 +0000 Subject: [PATCH] make sure cell exists --- source/UI/js/List/TableList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/UI/js/List/TableList.js b/source/UI/js/List/TableList.js index 3ac3b04b..b7d25f58 100644 --- a/source/UI/js/List/TableList.js +++ b/source/UI/js/List/TableList.js @@ -1246,7 +1246,7 @@ Ox.TableList = function(options, self) { }); id = value; } - $cell = getCell(id, key); + $cell = getItem(id) && getCell(id, key); if ($cell && !$cell.is('.OxEdit')) { var value = formatValue(key, value, that.$body.value(id)); if (value != $cell.html()) {