Ok so this only took me a year to figure this out. I was having problems with registering a class for use on the server side and client side and casting them back....it just wasn't working. But I found the solution! Its so small that you must pay attention.
function someClass(){
}
that will work! this wont....
someClass = function(){
}
So make sure if you are using Object.registerClass or plan to that you make sure to define it like the first example. And everything should work fine.
11:38:12 AM
|