diff --git a/source/Ox.UI/js/List/TableList.js b/source/Ox.UI/js/List/TableList.js index 13aa5438..c23f52fc 100644 --- a/source/Ox.UI/js/List/TableList.js +++ b/source/Ox.UI/js/List/TableList.js @@ -708,7 +708,9 @@ Ox.TableList = function(options, self) { function getCell(id, key) { var $item = getItem(id); key = key || ''; // fixme: what is this? - return $($item.find('.OxCell.OxColumn' + Ox.toTitleCase(key))[0]); + return $($item.find( + '.OxCell.OxColumn' + key[0].toUpperCase() + key.slice(1) + )[0]); } function getColumnOffsets() {