Hi,
We have fields with have a name with a dot (product.name for example) and when we return data from the server we do things like this:
{
product: '123',
product.name: 'my great product'
}
In 8.1 this worked fine as only the slash was used as a path separator. In 8.3 also the dot has been added as a separator (see DataBoundComponent._performActionOnValue). This means that our previous construction does not work anymore.
So my request... is it possible to somehow let us set the allowable/used path separators? This for backward compatibility.
Thanks.
gr. Martin
We have fields with have a name with a dot (product.name for example) and when we return data from the server we do things like this:
{
product: '123',
product.name: 'my great product'
}
In 8.1 this worked fine as only the slash was used as a path separator. In 8.3 also the dot has been added as a separator (see DataBoundComponent._performActionOnValue). This means that our previous construction does not work anymore.
So my request... is it possible to somehow let us set the allowable/used path separators? This for backward compatibility.
Thanks.
gr. Martin
Comment