Bugs limitations connues et évolutions » History » Version 14
« Previous -
Version 14/15
(diff) -
Next » -
Current version
Pablo Alingery, 20/04/2012 11:23
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
this.liveScroller.dom.style.width = (this.getScrollOffset() + 2) + "px";
à la ligne 1764 du fichier client-user/js/components/livegrid/dependencies/Ext.ux.Livegrid/Ext.ux.livegrid-all-debug.js
donc, juste après
liveScrollerDom.style.height = Math.max(contHeight, this.horizontalScrollOffset * 2) + "px";
On obtient donc :
// 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";