Actionscriptを使用してs:Listコンポーネントで選択した要素を設定していますが、リストは選択したアイテムまでスクロールしません。スクロールバーまたはマウスでスクロールする必要があります。選択したアイテムに自動スクロールすることはできますか?ありがとう !
12 に答える
s:List
メソッドensureIndexIsVisible(index:int):voidを試してください。
Sparkの場合:
list.ensureIndexIsVisible(index);
この関数は、Flex4+のリストの一番上までスクロールします。アイテムの高さを考慮しているため、高さが異なるさまざまなアイテムのリストで機能します。
private function scrollToIndex(list:List,index:int):void
{
if (!list.layout)
return;
var dataGroup:DataGroup = list.dataGroup;
var spDelta:Point = dataGroup.layout.getScrollPositionDeltaToElement(index);
if (spDelta)
{
dataGroup.horizontalScrollPosition += spDelta.x;
//move it to the top if the list has enough items
if(spDelta.y > 0)
{
var maxVSP:Number = dataGroup.contentHeight - dataGroup.height;
var itemBounds:Rectangle = list.layout.getElementBounds(index);
var newHeight:Number = dataGroup.verticalScrollPosition + spDelta.y
+ dataGroup.height - itemBounds.height;
dataGroup.verticalScrollPosition = Math.min(maxVSP, newHeight);
}
else
{
dataGroup.verticalScrollPosition += spDelta.y;
}
}
}
//try this
this.callLater(updateIndex);//where you want to set the selectedIndex
private function updateIndex():void
{
list.selectedIndex = newIndex;
list.ensureIndexIsVisible(newIndex);
}
flex-3にはscrollToIndex
メソッドがあるため、次のように呼び出すことができます。
list.scrollToIndex(list.selectedIndex);
これはflex-4でも機能するはずです。
これは私のために働いた。callLaterを使用する必要がありました。
list.selectedItem = "MyTestItem"; //or list.selectedIndex = 10;
this.callLater(updateIndex); //dispatch an update to list
private function updateIndex():void {
list.ensureIndexIsVisible(list.selectedIndex);
}
リストのスクローラーに直接アクセスして、次のような操作を行うことをお勧めします。
list.scroller.scrollRect.y = list.itemRenderer.height * index;
私はここでこの基本的なアイデアを見ました... http://arthurnn.com/blog/2011/01/12/coverflow-layout-for-flex-4/
public function scrollGroup( n : int ) : void
{
var scrollPoint : Point = theList.layout.getScrollPositionDeltaToElement( n );
var duration : Number = ( Math.max( scrollPoint.x, theList.layout.target.horizontalScrollPosition ) - Math.min( scrollPoint.x, theList.layout.target.horizontalScrollPosition )) * .01;
Tweener.addTween(theList.layout,{ horizontalScrollPosition: scrollPoint.x , time:duration});
}
protected function theList_caretChangeHandler(event:IndexChangeEvent):void
{
scrollGroup( event.newIndex );
event.target.invalidateDisplayList();
}
要素の高さにそのインデックスを掛けて、この値を次の場所に渡すことができます。
yourListID.scroller.viewport.verticalScrollPosition
これはバグです。デモと回避策はhttps://issues.apache.org/jira/browse/FLEX-33660で確認できます。
このカスタムリストコンポーネント拡張機能は私のために機能しました:
<s:List
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
valueCommit="callLater(ensureIndexIsVisible, [selectedIndex])">
</s:List>
私は最近、私のプロジェクトの1つで、グループ内のアイテムのサイズを定義することでこれを達成しました。
<s:Scroller x="940" y="0" maxHeight="465" maxWidth="940" horizontalScrollPolicy="off" verticalScrollPolicy="off">
<s:HGroup id="tutPane" columnWidth="940" variableColumnWidth="false" gap="0" x="0" y="0">
</s:HGroup>
</s:Scroller>
これに続いて、プライベートな「targetindex」変数をインクリメントすることで操作用のボタンコントロールが機能し、次にAnimateクラスを使用するcheckAnimation関数を、SimpleMotionPathと組み合わせて呼び出し、tutpane.firstIndexInViewとターゲットインデックスを比較しました。これにより、グループの「horizontalScrollPosition」が変更されました。
これにより、個別のコントロールを基本的にスクロールバーとして機能させることができましたが、選択したアイテムを表示するには、コントロールをスライドさせる必要がありました。この手法は、アイテムの自動選択にも機能すると思います。