Is there a way to access and manipulate xml nodes in the same way that one way one would eg. access the DOM in web?
eg. being able to add or remove properties dynamically from javascript?
Is there a way to access and manipulate xml nodes in the same way that one way one would eg. access the DOM in web?
eg. being able to add or remove properties dynamically from javascript?
Hi!
There is no way to access and manipulate xml nodes from JS. This is a design decision we made to avoid UI leaks into JS/business logic. Also making roundtrips from UX to JS to UX again can have performance penalties if used in animation and other FPS/performance dependent parts of UX.
Do you have a usecase that UX does not solve?