Project

General

Profile

Bugs limitations connues et évolutions » History » Version 14

Version 13 (Pablo Alingery, 20/04/2012 11:22) → Version 14/15 (Pablo Alingery, 20/04/2012 11:23)

h1. Bugs limitations connues et évolutions

>>>A partir de 0.9M5 : les SVA sont deprecated et remplacées par la notion de Ressources (mieux adapté pour REST)

>>>Bug scrollbar invisible sous windows

Solution :
source:workspace/client-user/js/components/livegrid/dependencies/Ext.ux.livegrid/Ext.ux.livegrid-all-debug.js@1#L1794
Intégrer cette ligne
<pre><code class="javascript">
this.liveScroller.dom.style.width = (this.getScrollOffset() + 2) + "px";
</pre></code>
à la ligne 1764 du fichier client-user/js/components/livegrid/dependencies/Ext.ux.Livegrid/Ext.ux.livegrid-all-debug.js

donc, (donc, juste après
<pre><code class="javascript">
liveScrollerDom.style.height = Math.max(contHeight, this.horizontalScrollOffset * 2) + "px";
</pre></code>

On obtient donc :

<pre><code class="javascript"> )
// adjust the height of the scrollbar
var contHeight = liveScrollerDom.parentNode.offsetHeight + ((ds.totalLength > 0 && scrollbar) ? -this.horizontalScrollOffset : 0) - this.hdHeight;

liveScrollerDom.style.height = Math.max(contHeight, this.horizontalScrollOffset * 2) + "px";
this.liveScroller.dom.style.width = (this.getScrollOffset() + 2) + "px";
</pre></code>