Hi,
if in a page there are two element with same id, dojo query with relative position don't work properly.
i.e.
testing dojo.query()
@import "../../resources/dojo.css";
dojo.addOnLoad(function() {
dojo.query("#b3", "thisForm").forEach(function(n){n.value="X";}); // <--- !!!!
});
dojo.query("#b3", "thisForm").forEach(function(n){n.value="X";}); // <--- !!!!
});
