I've added functions to the Date prototype and I am wondering where is the best place to put the code in a Flex project?
|
feedback
|
|
The best practice for a Flex application is to create a utility class to manipulate instances of a class rather than to change the prototype of that class. For example, you might create a | |||
|
feedback
|
|
Probably best to put it in a preinitialize handler for the Application - in case the prototype is used by any components as they're created. | |||
|
feedback
|