Project

General

Profile

Bugs limitations connues et évolutions » History » Version 12

Pablo Alingery, 20/04/2012 11:21

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 2 Pablo Alingery
(donc, juste après
17 2 Pablo Alingery
18 2 Pablo Alingery
liveScrollerDom.style.height = Math.max(contHeight, this.horizontalScrollOffset * 2) + "px";
19 2 Pablo Alingery
)
20 2 Pablo Alingery