This is an automated email from the git hooks/post-receive script. New commit to annotated tag v2.0.0-beta-2 in repository jaxx. See https://gitlab.nuiton.org/nuiton/jaxx.git commit 916f70de19284dd98881110a8dc39024599996a2 Author: Tony Chemit <chemit@codelutin.com> Date: Wed Dec 2 09:11:27 2009 +0000 fix lost binding --- jaxx-compiler/src/main/java/jaxx/compiler/binding/DataSource.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jaxx-compiler/src/main/java/jaxx/compiler/binding/DataSource.java b/jaxx-compiler/src/main/java/jaxx/compiler/binding/DataSource.java index 0874f8c..e9b09f3 100644 --- a/jaxx-compiler/src/main/java/jaxx/compiler/binding/DataSource.java +++ b/jaxx-compiler/src/main/java/jaxx/compiler/binding/DataSource.java @@ -326,7 +326,10 @@ public class DataSource { //TC-20091026 use the getScriptMethod from compiler MethodDescriptor newMethod = compiler.getScriptMethod(methodName); if (newMethod != null) { - addListener(compiler.getRootObject().getId(), + //TC-20091202 must suffix dependency by property, otherwise can not have two bindings + // on the same parent... +// addListener(compiler.getRootObject().getId(), + addListener(compiler.getRootObject().getId()+"."+propertyName, null, "addPropertyChangeListener(\"" + propertyName + "\", " + listenerId + ");" + JAXXCompiler.getLineSeparator(), "removePropertyChangeListener(\"" + propertyName + "\", " + listenerId + ");" + JAXXCompiler.getLineSeparator()); -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.