0

カスタムフィルターを実装したコンボボックスがあり、コンボボックスのコードは次のようになります

<fx:Declarations>
        <s:ArrayCollection id="arrC">
            <vo:ValueObject firstValue="430" secondValue="sampath"/>
            <vo:ValueObject firstValue="105" secondValue="New York"/>
            <vo:ValueObject firstValue="896" secondValue="Xerox"/>
        </s:ArrayCollection>
    </fx:Declarations>

private function combineFunction(item:Object):String {
                return item.firstValue+"-"+item.secondValue;
            }

<local:AwadComboBox x="325" y="212" id="cb" dataProvider="{arrC}" labelFunction="combineFunction"/>

コンボボックスは、コンボボックスを拡張するカスタムフィルターを使用して実装されています

private var unfilteredDataProvider : IList;
            override public function set dataProvider(value:IList):void {
                super.dataProvider = value;

                unfilteredDataProvider = value;
            }

            override protected function textInput_changeHandler(event:TextOperationEvent):void {
                super.textInput_changeHandler(event);

                if (unfilteredDataProvider is ArrayCollection) {
                    ArrayCollection(unfilteredDataProvider).filterFunction = filterMatches;
                    ArrayCollection(unfilteredDataProvider).refresh();

                    super.dataProvider = new ArrayCollection(unfilteredDataProvider.toArray()); 
                }
            }

            protected function filterMatches(item:Object):Boolean {
                if (item is String) {
                    if(String(item).toLowerCase().indexOf(
                        textInput.text.slice(0,
                            textInput.selectionAnchorPosition).toLowerCase())>-1)
                        return true;
                }
                else if (labelField && labelField!= "") {
                    if(item.hasOwnProperty(labelField) && 
                        String(item[labelField]).toLowerCase().indexOf(
                            textInput.text.slice(0,
                                textInput.selectionAnchorPosition).toLowerCase())>-1)
                        return true;
                }

                return false;
            }

このコンボボックスでは、入力した文字がドロップダウンリストにある場合は、その値をフィルタリングする必要がありますが、コードにバグがあります。誰かがこれを修正してください。

ありがとう!

4

0 に答える 0