November 30th, 1999 |
The coolest thing I’ve seen in the Flex 3 beta so far, is the
automated code generation.
I highly recommend any developer using Flex to check this new feature. Flex can now generate a CRUD (create/read/update/delete) application in a matter of minutes. Just setup your database structure, and run through the wizard. Flex Builder will generate the server side & UI code.
Posted in Flex 2, Flex 3, Off Topic, PHP, SEO by Dave Meehan | No Comments »
November 30th, 1999 |
Flex 3 state bug
If you have used the new code generation abilities of Flex 3 than you possibly have run into this bug before.
SetEventHandler seems to be broken when switching states in Flex 3.
Steps to reproduce:
- Generate a CRUD application using the automated code generation
- Create a new state based on the state “Add” that is generated automatically
- Update the click event handler on the “Save” button of the new state to point to another method.
- Run the app, enter the new state, and click save.
Workaround:
Delete the “Save” button and create a new button with the appropriate method attached.
This bug isn’t limited to the automated code generation. I experienced it while creating the application from scratch as well.
Posted in Flex 2, Flex 3, Off Topic, PHP, SEO by Dave Meehan | No Comments »
Recent Comments
Thanks a lot for this functionality! I have added only a few...