Changeset 30
- Timestamp:
- 10/08/08 02:06:23 (4 years ago)
- google:author:
- tsuckowhomberg
- Location:
- trunk
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
src/GridView.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r29 r30 1 1 - enhancement: removed programmatically invoking scroll in IE when the grid is rendered, 2 since this was fixed due to the css changes in a previously version 2 3 - fixed: (RowSelectionModel.js) method "isSelected()" would lose it's original argument 3 4 while processing it, which could lead to erroneous behavior -
trunk/src/GridView.js
r28 r30 155 155 156 156 /** 157 * Needed to indicate that IE has rendered the scrollbar properly. Used in158 * adjustBufferInset to tell whether IE has to activate the scrollbar159 * programmatically, otherwise it would be rendered as disabled.160 * @type {Boolean} _scrollInit161 * @private162 */163 _scrollInit : false,164 165 /**166 157 * Stores the height of the header. Needed for recalculating scroller inset height. 167 158 * @param {Number} … … 1595 1586 1596 1587 this.liveScrollerInset.style.height = (hiddenRows == 0 ? 0 : contHeight+(hiddenRows*this.rowHeight))+"px"; 1597 1598 // do action with the scrolling! IE would otherwise render the scrollbar as1599 // disabled when the scrollbar is shown for the first time and there are1600 // more records in the grid than displayable1601 if (Ext.isIE && !this._scrollInit) {1602 this._scrollInit = true;1603 this.adjustScrollerPos(1, true);1604 this.adjustScrollerPos(-1, true);1605 }1606 1588 }, 1607 1589
