diff --git a/source/Ox.UI/js/List/TableList.js b/source/Ox.UI/js/List/TableList.js index 300a6b47..724cba6e 100644 --- a/source/Ox.UI/js/List/TableList.js +++ b/source/Ox.UI/js/List/TableList.js @@ -1205,7 +1205,7 @@ Ox.TableList = function(options, self) { } $cell = getCell(id, key); $cell && $cell.html(formatValue(key, value, that.$body.value(id))); - if (key == self.options.sort[0].key) { + if (!self.options.sortable && key == self.options.sort[0].key) { // sort key has changed that.$body.sort(); }