diff --git a/source/Ox.UI/js/List/TableList.js b/source/Ox.UI/js/List/TableList.js index 2e592add..ce58960f 100644 --- a/source/Ox.UI/js/List/TableList.js +++ b/source/Ox.UI/js/List/TableList.js @@ -1007,6 +1007,8 @@ Ox.TableList = function(options, self) { $cell = getCell(id, key), $input, html = $cell.html(), + clickableCells = $item.find('.OxClickable').removeClass('OxClickable'), + editableCells = $item.find('.OxEditable').removeClass('OxEditable'), index = getColumnIndexById(key), column = self.options.columns[index], width = column.width - self.options.columnsVisible; @@ -1046,6 +1048,10 @@ Ox.TableList = function(options, self) { width: (width - 8) + 'px' }) .html(value); + setTimeout(function() { + clickableCells.addClass('OxClickable'); + editableCells.addClass('OxEditable'); + }, 250); that.triggerEvent('submit', { id: id, key: key,