[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.

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

2009-03-03 Thread luke_lee1124
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. _rico On 25.02.2009, at 03:25, luke_lee1124 wrote: Error: Bookmark

[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\

[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

[flexcoders] Bookmark no longer valid, please help

2009-01-13 Thread luke_lee1124
Hi, All, In my application, var tempAC:ArrayCollection = (lastSectionItem.children as ArrayCollection); tempAC.addItemAt(newPage,insertIndex); //lastSectionItem is the selected node of advanceddatagrid. //so those codes means add a child to a

[flexcoders] is anybody instersted in hiring a Flex Builder programmer?

2009-01-04 Thread luke_lee1124
We are a small website development offshore team based in China, our team was established in 2003 with two project managers, seven programmers and two designers. We have been working in the industry for more than 5 years. During these years we have accomplished lots of projects for overseas

[flexcoders] what is the defference between addeventlistener and hardcode it at mxml

2008-04-20 Thread luke_lee1124
let us see one row textInput.addEventListener(’change’, do_change); another row mx:TextInput change=do_change/ what is the defference? using addEventListener, i can using weak references, how can i use weak references in mxml? Thanks

[flexcoders] Application from Database in Flex Builder 3

2008-04-16 Thread luke_lee1124
Hi, All, I just made my mind to move to flex builder 3. I tried its new feature - creating application from database. It is good, but my question is: a data grid showing one table is not enough, is there a simple way to create a data grid to display one cross query or a view without writing php

[flexcoders] Re: Why am i getting an internal build error when i try to use the YahooMap.swc

2008-04-03 Thread luke_lee1124
I have exactly the same problem, I am sure it is caused by YahooMap.swc, can anyone help? Thanks

[flexcoders] Re: The limit of [ResourceBundle] and @Embed

2008-01-31 Thread luke_lee1124
Yes, i have, if i have two bundles, one embeded assets, it works, but if i have four bundles, the asset is not displaying.

[flexcoders] Re: The limit of [ResourceBundle] and @Embed

2008-01-31 Thread luke_lee1124
I see this problem in flex 2.0.1

[flexcoders] The limit of [ResourceBundle] and @Embed

2008-01-29 Thread luke_lee1124
Hi, All, I asked this question before but now, i can explain it more clearly. I am using [ResourceBundle] as following: [Bindable] public var rb:ResourceBundle; [ResourceBundle(EmbeddedClassesBundle)] //english version public var rb1:ResourceBundle;

[flexcoders] Re: a rather odd thing about ResourceBundle

2008-01-28 Thread luke_lee1124
Yes, assets1 folder is one sub folder inside the main application folder. I think the path is correct, because mx:Image id=image2 source = assets1/btn_sales.png / works mx:Image id=image2 source = @Embed(source='assets1/btn_sales.png') / works too without resource bundles. Thanks --- In

[flexcoders] Re: a rather odd thing about ResourceBundle

2008-01-28 Thread luke_lee1124
Yes, assets1 is a sub folder of the application folder.