From Groups/zyrconium:
Hello!
Perhaps you could update the code for DegrafaCollection to implement
functionality for _setItemIndex function, please?
It now looks like this:
protected function _setItemIndex(value:*,newIndex:Number):Boolean{
return true;
}
But maybe it could look like this:
protected function _setItemIndex(value:*,newIndex:Number):Boolean{
var spliced:Array = this.items.splice(this.items.indexOf(value),
1);
this.items.splice(newIndex, 0, spliced[0]);
return true;
}
Maybe you can make it faster/better. But make it do something :)
Original issue reported on code.google.com by greg.d...@gmail.com on 22 Oct 2008 at 5:57
Original issue reported on code.google.com by
greg.d...@gmail.com
on 22 Oct 2008 at 5:57