After I installed GraniteDS support in my already existing application FacesMessages component stoped working with my old facelets based pages. First of all it...
Currently I am facing an issue while calling multiple asynchronous calls from Flex using Granite-Spring Framework . Issue is If i call more than one service...
While working with the gas3-generated Enum class, We've found it handy to use a function similar to Java's Enum.valueOf(). I'm using something like the...
Currently I am facing an issue while calling multiple asynchronous calls from Flex using Granite-Spring Framework . Time taken to get the results back on to...
i tried this option as well,It did not help, Currently i found work around for this,instead of returning response as separate lists, I have created a single...
1. Excellent skills with Flex Development and Action script 3.0 2. Solid understanding of Object Oriented Programming 3. Knowledge and experience in deploying...
I receive following error when doing a second request to the server. First one goes correctly and it is an authorization request that loads User object to the...
I don't have enough information to tell what is happening, having the as3 code could help. I can suggest for now that you wait for the 1.1 final, which is...
Just wanted to let you know that recent builds of the gas3 generator work well in the circumstance where I'm using Flex Builder 3.0.1 update (runs on Eclipse...
Franck, I can live with it... What I really want to say is: CONGRATULATIONS!!! (I'm downloading the GA release as I type this.) Brilliant work by you and your...
GDS 1.1 version has fixed my problem!!! Congrats for this new release, it is great to see active oss development efforts in Flex ecosystem. Best, Piotr...
I found in documentation that it is possible to use lazy loading only with UI components. Is this still valid statement and if yes is there any pattern of...
You should be able to use lazy loading programmatically, but you will have to manage the ItemPendingError manually. There is a section about this in the Flex...
I added additional Query object on the server side to workaround this case. Unfortunetly this got me into another problem that I completely cannot explain....
One possibility if you have a persistent uid in your entities would be that you have one Location object with the same uid than one User object, even if that...
I think this can be the case, I attached UserBase, LocationBase and AACObjectBase classes. All my persistent objects inherit at the end from AACObjectBase...
1. In general we highly recommend that you use a real persistent uid field (as in the graniteds-seam sample project). This way you won't have problems when...
Note that if your id is a Number, use this instead : public override function get uid():String { if (isNaN(id)) return getQualifiedClassName(this); return...
If I'm returning a list of objects from Java, but they are ending up as plain "Objects" by the time my Flex code gets a hold of them, how can I troubleshoot...
You should make sure that the classes are correctly included in the swf. The mxmlc compiler won't put all classes if they are not referenced in the mxml file....