I don't know much about Dojo but is the following possible:
I assume it has a getter/setter for access to its datastore, is it possible to override this code.
For example:
In the dojo store i have 'Name: @Joe'
is it possible to check the get to:
get()
if name.firstChar = '@' then just
return 'Joe'
and:
set(var)
if name.firstChar = '@' then set to @+var
Is this sort of thing possible? or will i needs a wrapper API?