SDK が 4.5 以前の場合、スクロールバーを表示しない Spark DataGrid があります。SDK を 4.6 に設定すると、正しく表示されます。
誰かがこれを見たことがありますか、またはスクロールバーを正しく表示する方法を知っていますか?
これは私が使用したCSSです:
s|Scroll {
skinClass: ClassReference("view.skins.CustomScrollerSkin");
}
これは基本的にスキンです:
<!--- A horizontal scrollbar that lets you control the portion of data that is displayed
when there is too much data to fit horizontally in a display area.
The Scroller determines whether the horizontal ScrollBar is visible. -->
<fx:Component id="horizontalScrollBarFactory">
<s:HScrollBar visible="false" />
</fx:Component>