I think this question probably has an obvious answer, but I want to make sure I am using something resembling best practices, so I decided I better ask:
If I have a server object that has a set of persistent properties, but on the client I want to add some temporary properties and/or logic, what is the best way to accomplish this? The problem is that I want to use RemoteObject to get my objects from the server, but I want them to have additional properties and/or functions when on the client. Do only properties present on the server get populated on the client, with the others getting their default values?.. or will I have to create client side objects by copying values from generic server side objects? Thanks for any help, Shaun

