Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

philip_mair
philip_mair
Offline

Badges

Badges
2

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
3

Discussions

Discussions
0

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by philip_mair
Customize the badges you want to showcase on your profile
Re: TypeError: Error #1009 (null object access) after manually commit of deleteItem - Adobe LiveCycle 10-11-2011
Well i made a workaround for my problem:protected function initializeHandler(event:FlexEvent):void{ //at first fill, the entetiesAC.list will be set to a mx.data.DataList numberRangeProxy.fill( entetiesAC ); //catch the CollectionEvent before the ListCollectionView.listChangeHandler gets the event numberRangesAC.list.addEventListener(CollectionEvent.COLLECTION_CHANGE, collectionChangeHandler, false, int.MAX_VALUE, true);}protected function collectionChangeHandler(event: CollectionEvent) : void{ ...

Views

148

Likes

0

Replies

0
Re: TypeError: Error #1009 (null object access) after manually commit of deleteItem - Adobe LiveCycle 10-11-2011
Hi and thanks for your answer!The entity is not associated with any other entities or contains any other entities ...How should i pass the entity without putting it into an array, cause the commit mehod looks like:public function commit(itemsOrCollections:Array = null, cascadeCommit:Boolean = false):mx.rpc:AsyncTokenI also tried cascadeCommit = true without changes ...The confusing thing is, that the collectionEvent.kind is "add" with collectionEvent.items= [null] .... and it seems that the mx.d...

Views

149

Likes

0

Replies

0
TypeError: Error #1009 (null object access) after manually commit of deleteItem - Adobe LiveCycle 09-11-2011
Hello!I'm getting a error with LCDS 3.1.0.315496I'm using a DataService to edit some entities with dataService.autoCommit = false;I fill a arrayCollection like:dataService.fill(entitiesAC); //fill with all entitesIf i want to update a entity i do:dataService.commit([entitiy]); //works fineIf i want to create a entity i do:dataService.createItem(entity);dataService.commit([entity]); //works fineIf i want to undo my made changes i do:dataService.revertChanges( entity ); //works fineIf i want to de...

Views

3.9K

Likes

0

Replies

3