[flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-03-04 Thread luke_lee1124
I got a workarround just simplely: ac.disableAutoUpdate(); before you make any change to the ac.

Re: [flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-03-04 Thread Rico Leuthold
Hi Luke, Mine is just a GroupingCollection (http://livedocs.adobe.com/flex/3/langref/mx/collections/GroupingCollection.html ). _rico On 04.03.2009, at 06:59, luke_lee1124 wrote: Hi, rico Thanks very much. what is the data type of your gc? mine is a mx:HierarchicalData, it did not have a

[flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-03-03 Thread luke_lee1124
Hi, rico Thanks very much. what is the data type of your gc? mine is a mx:HierarchicalData, it did not have a refresh() method. Thanks --- In flexcoders@yahoogroups.com, Rico Leuthold rleuth...@... wrote: Hi Luke, I couldn't find any solution to this, but found a workaround. Just

Re: [flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-02-27 Thread Rico Leuthold
Hi Luke, I couldn't find any solution to this, but found a workaround. Just filter the underlying ArrayCollection, set it as source for the grouping collection and refresh the collection. ac.filterFunction = theFilterFunc; gc.source = ac; gc.refresh(); adg.expandAll(); This works for me.

[flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-02-24 Thread luke_lee1124
Hi, Here is my debug result Error: Bookmark no longer valid. at ListCollectionViewCursor/seek()[E:\dev\3.1.0\frameworks\projects\framework\src\mx\collections\ListCollectionView.as:2055] at

[flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-02-24 Thread luke_lee1124
Error: Bookmark no longer valid. at ListCollectionViewCursor/seek()[E:\dev\3.1.0\frameworks\projects\framework\src\m\ x\collections\ListCollectionView.as:2055] at mx.collections::HierarchicalCollectionViewCursor/collectionChangeHandler()[C:\wo\

RE: [flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-02-03 Thread Alex Harui
Post the full stack trace From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of luke_lee1124 Sent: Sunday, February 01, 2009 1:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cursor Error: Bookmark no longer valid. I have the same problem, please let

[flexcoders] Re: Cursor Error: Bookmark no longer valid.

2009-02-01 Thread luke_lee1124
I have the same problem, please let me know if you find a solution. Many thanks