For the Domino Data Services which is new with 8.53 and the XPages Extension library I want to turn off the @ that prepends all properties that are returned in the JSON data from a REST API call.
e.g. currently it looks like this:
"@title":"($DircatConfig)",
"@folder":false,
"@private":false,
"@modified":"2012-02-03T14:50:03Z",
"@unid":"50458575F2AA5F918525690D004F0AB5",
"@href":"http:\/\/192.168.1.30:80\/names.nsf\/api\/data\/collections\/unid\/50458575F2AA5F918525690D004F0AB5"
The @ symbol is causing me grief in Javascript frameworks which can bind to the data directly as you cannot use the dot notation to bind to individual property names if the include an @.
The framework I am trying is http://angularjs.org/ and an example bind might be
{{databases.@title}} <-- doesnt work whereas {{databases.title}} <--works
I have tagged this as XPages as its related to the extension library.