[flexcoders] Re: BlazeDS + Hibernate: how to not send PersistentMaps to the client?

2010-05-11 Thread Sébastien Tromp
instanceToSerialize; } Hope this may be useful. Regards, -- Sébastien 2010/5/10 Sébastien Tromp sebastien.tr...@gmail.com Hello, I am using Flex and the client side, Java + Hibernate on the server, and BlazeDS to communicate between them. One typical scenario I am facing

[flexcoders] BlazeDS + Hibernate: how to not send PersistentMaps to the client?

2010-05-10 Thread Sébastien Tromp
BlazeDS. However, if myObject has a Map attribute, Hibernate populates it with a PersistentMap, thus sending it to the client. Is there a way I could use to _not_ send PersistentMaps, but rather standard HashMaps? Thank you for your help, -- Sébastien Tromp

[flexcoders] Re: Flex + BazeDS: custom collections on Flex side

2010-01-17 Thread Sébastien Tromp
, or the Hibernate PersistantMap) and map it to my custom class in Flex (i.e. customize only the client part). Is this something you have noticed? Regards, -- Sébastien 2010/1/16 Sébastien Tromp sebastien.tr...@gmail.com Bumping the question, since I still have not resolved the issue

[flexcoders] Re: Flex + BazeDS: custom collections on Flex side

2010-01-16 Thread Sébastien Tromp
Bumping the question, since I still have not resolved the issue. If there really is no other way I will try and revert back to an Object (or Dictionary) to store the data, and use the HashCollection simply as a wrapper around it. Thanks, -- Sébastien 2010/1/10 Sébastien Tromp sebastien.tr

[flexcoders] Flex + BazeDS: custom collections on Flex side

2010-01-10 Thread Sébastien Tromp
Hello, I am currently working with a Java server implementation, talking to a Flex client using BlazeDS. On my client side, I have implemented a custom HashCollection (

[flexcoders] Re: Flex + BazeDS: custom collections on Flex side

2010-01-10 Thread Sébastien Tromp
(map PersistentMap and Map to my HashCollection class), or on why the overridden read- and writeExternal are never called? Regards, -- Sebastien 2010/1/10 Sébastien Tromp sebastien.tr...@gmail.com Hello, I am currently working with a Java server implementation, talking to a Flex client using

Re: [flexcoders] Reuse same instance of UIComponent in different views

2009-12-01 Thread Sébastien Tromp
Sébastien Tromp sebastien.tr...@gmail.com Hello, In my application, I have created an extension of a Canvas: class A extends Canvas This component is rather big in memory, and needs to be displayed in several panels of the application at the same time. For instance, as a child

[flexcoders] Reuse same instance of UIComponent in different views

2009-11-28 Thread Sébastien Tromp
Hello, In my application, I have created an extension of a Canvas: class A extends Canvas This component is rather big in memory, and needs to be displayed in several panels of the application at the same time. For instance, as a child of another Canvas and as a child of a TitleWindow

Re: [flexcoders] Re: Mac-like icon brower library

2009-11-08 Thread Sébastien Tromp
%40yahoogroups.com, Sébastien Tromp sebastien.tr...@... wrote: Hello, Some time ago, I stumbled across a library that defined a container that had behavior similar to the bottom taskbar on Macintoshesµ. You know, when all the icons are aligned, and when you mouse over one of them it gets magnified

Re: [flexcoders] Re: Mac-like icon brower library

2009-11-08 Thread Sébastien Tromp
For info, here is an open-source Tsunami / Dock menu: http://www.quietlyscheming.com/blog/components/fisheye-component/ 2009/11/8 Sébastien Tromp sebastien.tr...@gmail.com Thanks a lot, exactly what I was looking for. 2009/11/8 Shanimal yahoo_flexcod...@shanimal.com You are looking

[flexcoders] Mac-like icon brower library

2009-11-07 Thread Sébastien Tromp
Hello, Some time ago, I stumbled across a library that defined a container that had behavior similar to the bottom taskbar on Macintoshesµ. You know, when all the icons are aligned, and when you mouse over one of them it gets magnified, and the other icons are repositioned. I lost the bookmark

[flexcoders] Re: Forcing titlewindow redraw after includeInLayout set to true

2009-11-05 Thread Sébastien Tromp
Hi, Bump, in case someone who has an answer has missed the topic. Thanks, -- Sébastien 2009/11/1 Sébastien Tromp sebastien.tr...@gmail.com Hello, I have an MXML TitleWindow component that contains the following: popup:MajorImprovementClickableBoard id = board player = {player

[flexcoders] Forcing titlewindow redraw after includeInLayout set to true

2009-11-01 Thread Sébastien Tromp
Hello, I have an MXML TitleWindow component that contains the following: popup:MajorImprovementClickableBoard id = board player = {player} majorImprovements = {AgricolaModelLocator.getInstance().game.majorImprovements}/ view:AlternativeCostComponent id = alternativeCostsComponent visible

Re: [flexcoders] Difference between adding child at initialization and when after creationComplete event is dispatched

2009-08-24 Thread Sébastien Tromp
children then may not be causing a re-measure. Alex Harui Flex SDK Developer Adobe Systems Inc. http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Sébastien Tromp *Sent:* Sunday, August 23

[flexcoders] Difference between adding child at initialization and when after creationComplete event is dispatched

2009-08-23 Thread Sébastien Tromp
Hello everyone, I have a difference in behaviour using Flex which I cannot understand (I am rather new to this). Here is the thing: I have a FarmBoard.mxml component that extends Canvas, which contains: mx:Grid x=12 y=70 width=448 height=271 mx:GridRow width=100% height=100%

Re: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-21 Thread Sébastien Tromp
Scott Melby a écrit : In your item renderer, if you have control over the TimerEvent creation, set the bubbles parameter to true. If you do not, you may want to catch the event in the renderer and re-dispatch a new one with bubbles set to true. This will allow your event to bubble out,

[flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-19 Thread Sébastien Tromp
Hello, I am stuck with an issue whose solution I cannot find on the Internet. I have an application with a DataGrid: mx:DataGrid id=currentConstructions mx:columns mx:DataGridColumn dataField=buildingType/ mx:DataGridColumn dataField=endDate id=remainingTime