Bugs limitations connues et évolutions¶
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).
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 (deprecated : bug corrigé depuis...)
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";