When I bind a Date value to a Label's text property, I use ToString Transformers with a format stirng "{0:d}", but it doesn't work.
So I search the code in atlas.js and find the definition of Sys.BindingBase.Transformers.ToString, I got this in line 7:
var placeHolder = (formatString && (formatString.length != 0)) ? formatString.indexOf('{0}') : -1;
maybe it's why it's doesn't work, so I change it to :
var placeHolder = (formatString && (formatString.length != 0)) ? formatString.indexOf('{0') : -1;
Then, it works. But I haven't test more to affirm this change is right