From cbd948740a7b00b469acd596a43dd484416cc70d Mon Sep 17 00:00:00 2001 From: j Date: Wed, 14 Nov 2018 14:35:22 +0000 Subject: [PATCH] don't rebuild list item while a cell is in edit state --- source/UI/js/List/ListItem.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/UI/js/List/ListItem.js b/source/UI/js/List/ListItem.js index 816225d0..5b5ff598 100644 --- a/source/UI/js/List/ListItem.js +++ b/source/UI/js/List/ListItem.js @@ -28,7 +28,9 @@ Ox.ListItem = function(options, self) { .options(options || {}) .update({ data: function() { - constructItem(true); + if (!that.find('.OxEdit').length) { + constructItem(true); + } }, position: function() { that.data({position: self.options.position});