Bugs limitations connues et évolutions » History » Version 14
Pablo Alingery, 20/04/2012 11:23
1 | 1 | Herve Ballans | h1. Bugs limitations connues et évolutions |
---|---|---|---|
2 | 1 | Herve Ballans | |
3 | 10 | Pablo Alingery | >>>A partir de 0.9M5 : les SVA sont deprecated et remplacées par la notion de Ressources (mieux adapté pour REST) |
4 | 2 | Pablo Alingery | |
5 | 2 | Pablo Alingery | |
6 | 2 | Pablo Alingery | >>>Bug scrollbar invisible sous windows |
7 | 2 | Pablo Alingery | |
8 | 11 | Pablo Alingery | Solution : |
9 | 8 | Pablo Alingery | source:workspace/client-user/js/components/livegrid/dependencies/Ext.ux.livegrid/Ext.ux.livegrid-all-debug.js@1#L1794 |
10 | 2 | Pablo Alingery | Intégrer cette ligne |
11 | 12 | Pablo Alingery | <pre><code class="javascript"> |
12 | 1 | Herve Ballans | this.liveScroller.dom.style.width = (this.getScrollOffset() + 2) + "px"; |
13 | 12 | Pablo Alingery | </pre></code> |
14 | 9 | Pablo Alingery | à la ligne 1764 du fichier client-user/js/components/livegrid/dependencies/Ext.ux.Livegrid/Ext.ux.livegrid-all-debug.js |
15 | 2 | Pablo Alingery | |
16 | 14 | Pablo Alingery | donc, juste après |
17 | 13 | Pablo Alingery | <pre><code class="javascript"> |
18 | 1 | Herve Ballans | liveScrollerDom.style.height = Math.max(contHeight, this.horizontalScrollOffset * 2) + "px"; |
19 | 1 | Herve Ballans | </pre></code> |
20 | 14 | Pablo Alingery | |
21 | 14 | Pablo Alingery | |
22 | 14 | Pablo Alingery | On obtient donc : |
23 | 14 | Pablo Alingery | <pre><code class="javascript"> |
24 | 14 | Pablo Alingery | // adjust the height of the scrollbar |
25 | 14 | Pablo Alingery | var contHeight = liveScrollerDom.parentNode.offsetHeight + ((ds.totalLength > 0 && scrollbar) ? -this.horizontalScrollOffset : 0) - this.hdHeight; |
26 | 14 | Pablo Alingery | |
27 | 14 | Pablo Alingery | liveScrollerDom.style.height = Math.max(contHeight, this.horizontalScrollOffset * 2) + "px"; |
28 | 14 | Pablo Alingery | this.liveScroller.dom.style.width = (this.getScrollOffset() + 2) + "px"; |
29 | 14 | Pablo Alingery | </pre></code> |