Bugs limitations connues et évolutions » History » Version 15
Elie Soubrie, 04/06/2012 15:43
1 | 1 | Herve Ballans | h1. Bugs limitations connues et évolutions |
---|---|---|---|
2 | 1 | Herve Ballans | |
3 | 15 | Elie Soubrie | |
4 | 15 | Elie Soubrie | >>>Lorsqu'on crée un dataset dans sitools2, un des attributs doit être défini comme clé primaire et doit OBLIGATOIREMENT être filtrable (i.e. avec la case filter checkée). |
5 | 15 | Elie Soubrie | |
6 | 15 | Elie Soubrie | |
7 | 2 | Pablo Alingery | >>>A partir de 0.9M5 : les SVA sont deprecated et remplacées par la notion de Ressources (mieux adapté pour REST) |
8 | 2 | Pablo Alingery | |
9 | 1 | Herve Ballans | |
10 | 15 | Elie Soubrie | >>>Bug scrollbar invisible sous windows (deprecated : bug corrigé depuis...) |
11 | 2 | Pablo Alingery | |
12 | 11 | Pablo Alingery | Solution : |
13 | 8 | Pablo Alingery | source:workspace/client-user/js/components/livegrid/dependencies/Ext.ux.livegrid/Ext.ux.livegrid-all-debug.js@1#L1794 |
14 | 2 | Pablo Alingery | Intégrer cette ligne |
15 | 12 | Pablo Alingery | <pre><code class="javascript"> |
16 | 1 | Herve Ballans | this.liveScroller.dom.style.width = (this.getScrollOffset() + 2) + "px"; |
17 | 12 | Pablo Alingery | </pre></code> |
18 | 9 | Pablo Alingery | à la ligne 1764 du fichier client-user/js/components/livegrid/dependencies/Ext.ux.Livegrid/Ext.ux.livegrid-all-debug.js |
19 | 2 | Pablo Alingery | |
20 | 14 | Pablo Alingery | donc, juste après |
21 | 13 | Pablo Alingery | <pre><code class="javascript"> |
22 | 1 | Herve Ballans | liveScrollerDom.style.height = Math.max(contHeight, this.horizontalScrollOffset * 2) + "px"; |
23 | 1 | Herve Ballans | </pre></code> |
24 | 14 | Pablo Alingery | |
25 | 14 | Pablo Alingery | |
26 | 14 | Pablo Alingery | On obtient donc : |
27 | 14 | Pablo Alingery | <pre><code class="javascript"> |
28 | 14 | Pablo Alingery | // adjust the height of the scrollbar |
29 | 14 | Pablo Alingery | var contHeight = liveScrollerDom.parentNode.offsetHeight + ((ds.totalLength > 0 && scrollbar) ? -this.horizontalScrollOffset : 0) - this.hdHeight; |
30 | 14 | Pablo Alingery | |
31 | 14 | Pablo Alingery | liveScrollerDom.style.height = Math.max(contHeight, this.horizontalScrollOffset * 2) + "px"; |
32 | 14 | Pablo Alingery | this.liveScroller.dom.style.width = (this.getScrollOffset() + 2) + "px"; |
33 | 14 | Pablo Alingery | </pre></code> |