diff --git a/source/Ox.UI/js/List/Ox.TextList.js b/source/Ox.UI/js/List/Ox.TextList.js index 2d7f5397..380d2106 100644 --- a/source/Ox.UI/js/List/Ox.TextList.js +++ b/source/Ox.UI/js/List/Ox.TextList.js @@ -656,7 +656,7 @@ Ox.TextList = function(options, self) { ? $('.OxHeadCell' + stopSelector).next() : $('.OxHeadCell' + stopSelector)); $resize.detach().insertAfter($column); - that.$body.find('.OxItem').each(function() { + that.$body.$element.find('.OxItem').each(function() { var $this = $(this); $this.children(startSelector).detach()[insert]( $this.children(stopSelector) @@ -695,7 +695,7 @@ Ox.TextList = function(options, self) { that.$head.$content.empty(); constructHead(); itemWidth = getItemWidth(); - that.$body.find('.OxItem').each(function() { + that.$body.$element.find('.OxItem').each(function() { var $this = $(this); $this.children(selector).remove(); $this.css({width: itemWidth + 'px'});