Hi,
It would be nice if the default/built-in sort normalizer for the Tree class
would support property names with periods (.) in their names. We use XML
and unfortunately need to support elements with periods in their names.
In the mean time, we've written our own normalizer (exact copy from ISC code),
but we changed the following single line of code in our implementation.
Changed to:
instead of:
Regards,
It would be nice if the default/built-in sort normalizer for the Tree class
would support property names with periods (.) in their names. We use XML
and unfortunately need to support elements with periods in their names.
In the mean time, we've written our own normalizer (exact copy from ISC code),
but we changed the following single line of code in our implementation.
Changed to:
Code:
script.append("var prop = obj[", property, "];",
Code:
script.append("var prop = obj.", property, ";",
Comment