vote up 0 vote down star

Title says it all, I have a list control in Flex that has been data bound to an e4x xml object from an HTTPService.

I would now like to have a button that clears the list, how can I do this?

I have tried:


list.dataProvider = null;

which does not seem to work, I have also tried:


list.dataProvider = {};

which clears the items but leaves [object,object] as the first item in the list...

Thanks.

flag

53% accept rate

1 Answer

vote up 5 vote down check

Perhaps...

list.dataProvider = new Array();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.