X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/530ef4b6c5b943cfa68b779d11cf7de29aa878bf..b37ceabb82336ee82757cd32efe353cfab8ec267:/examples/ux/DataViewTransition.js diff --git a/examples/ux/DataViewTransition.js b/examples/ux/DataViewTransition.js index 097232a9..2575ff75 100644 --- a/examples/ux/DataViewTransition.js +++ b/examples/ux/DataViewTransition.js @@ -1,5 +1,5 @@ /*! - * Ext JS Library 3.2.1 + * Ext JS Library 3.2.2 * Copyright(c) 2006-2010 Ext JS, Inc. * licensing@extjs.com * http://www.extjs.com/license @@ -140,12 +140,12 @@ Ext.ux.DataViewTransition = Ext.extend(Object, { if (el.getStyle('position') != 'absolute') { elCache[id].applyStyles({ position: 'absolute', - left : oldPos.left, - top : oldPos.top, + left : oldPos.left + "px", + top : oldPos.top + "px", //we set the width here to make ListViews work correctly. This is not needed for DataViews - width : el.getWidth(!Ext.isIE), - height : el.getHeight(!Ext.isIE) + width : el.getWidth(!Ext.isIE || Ext.isStrict), + height : el.getHeight(!Ext.isIE || Ext.isStrict) }); } }); @@ -181,8 +181,8 @@ Ext.ux.DataViewTransition = Ext.extend(Object, { if (fraction >= 1) { for (var id in newPositions) { Ext.fly(dataviewID + '-' + id).applyStyles({ - top : newPositions[id].top, - left: newPositions[id].left + top : newPositions[id].top + "px", + left: newPositions[id].left + "px" }); } @@ -204,9 +204,9 @@ Ext.ux.DataViewTransition = Ext.extend(Object, { midLeft = oldLeft > newLeft ? oldLeft - diffLeft : oldLeft + diffLeft; Ext.fly(dataviewID + '-' + id).applyStyles({ - top : midTop + 'px', - left: midLeft + 'px' - }); + top : midTop + "px", + left: midLeft + "px" + }); } } }; @@ -222,8 +222,8 @@ Ext.ux.DataViewTransition = Ext.extend(Object, { //show new items Ext.iterate(added, function(id, item) { Ext.fly(this.dataviewID + '-' + item.get(this.idProperty)).applyStyles({ - top : newPositions[id].top, - left: newPositions[id].left + top : newPositions[id].top + "px", + left: newPositions[id].left + "px" }).fadeIn({ remove : false, duration: duration / 1000