From 8acccb5cd182353076aa42d40c7ac8c9f8776fe0 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 4 Jun 2011 18:18:12 +0200 Subject: [PATCH] getCel(id) should also work --- source/Ox.UI/js/List/Ox.TextList.js | 1 + 1 file changed, 1 insertion(+) diff --git a/source/Ox.UI/js/List/Ox.TextList.js b/source/Ox.UI/js/List/Ox.TextList.js index 1b9079d6..c1254f1c 100644 --- a/source/Ox.UI/js/List/Ox.TextList.js +++ b/source/Ox.UI/js/List/Ox.TextList.js @@ -511,6 +511,7 @@ Ox.TextList = function(options, self) { function getCell(id, key) { Ox.print('getCell', id, key) var $item = getItem(id); + key = key || ''; return $($item.find('.OxCell.OxColumn' + Ox.toTitleCase(key))[0]); }