Hi, Thanks for your answers Franck. I work again on supporting Jcrom lazy loading in GraniteDS from Hibernate sample. Could you give me some details about what...
I just joined and I've posted two bugs so far, but I've not yet said thanks for creating Granite. I'm creating a full scale application in flex, not just a...
There was already a JIRA on this, this is fixed in the trunk / nightly builds. ... org.granite.tide.collections::PersistentCollection()[C:\workspace33\gran\...
Hi, When an entity isn't initialized with Hibernate (ie: it is an instance of HibernateProxy), it contains the class and the id of the dependant object (the id...
I'm trying to use the Observer tag from the setup example: [Observer("createDtsAccount")] private function createAccount(event:TideContextEvent):void { } ...
I'm losing my mind here... I'm adding components like this: tide.addComponent("dtsAccountHomeCtl", DtsAccountHomeCtl, false, true); At some point it was...
I think the issue is this: tideContext.tutorialApp = this; Checking now... don't want anybody to waste their time on me since I obviously can't read...
That certainly means that the UI component from which you dispatch the TideUIEvent is not known in the context. You have to add it in the context somewhere...
Hum, maybe the tutorial is wrong. Can you add this to BookHome, I can't check this right now : @Override public void setId(Object id) { if (id instanceof...
The previous client part was correct. This second way won't work because it will be considered as two different server calls and the instance will be lost...
Do you have any input on how I should implement this? Should I do it a different way so that I don't have to do this "quick fix"? From the server code's point...
I fear I don't have a cleaner solution for now. This is a tricky problem because Tide must be called before Seam injection and *needs* to call the getter and...
If I put this line of code: [In][Out] public var currentAccount:DtsAccount = null; In the class: [Name("accountCtl")] public class accountCtl and I am...
You should use [Observer("accountAuthenticated-success", remote="true")] on your method instead of adding the listener in the constructor (don't forget to make...
You really should register all components in the main mxml. The components are instantiated when needed but the annotation processing has to be done very early...
Hi William, sorry for me answer being a little belated, I was on my vacation during last two weeks. I will definitely try your tip in practice. But I have to...
You've got the main thing, the RO sends a LOGIN message on the first call after setCredentials has been set. It's processed by the GDS security service which...
Last thing: in the current trunk of GDS 1.2, the identity component has a new method forceLogout which always calls the server identity.logout (it does almost...
You are number one and your advices helps :-), I have written custom Identity on client according to your hint and it works just fine, couldn't your solution...
Hi again in 2009 :-) I have an interesting problem with HttpSession. I have been using various VIEW technologies during last few months including JSF, GWT, and...
Hmm... I should have thought of that, but I was under the assumption that addComponents(...) instantiated the Ctl classes. I'm glad it's so simple. Thanks!...