Known issues |
From JAXXWiki
Contents |
[edit]
Compiler
- There are some problems with the classpath searching with a remapped source directory (the "srcdir" attribute of the Ant task) or destination directory (the "destdir" attribute of the Ant task or the "-d" option on the jaxxc command line). This can cause dependency files to be reported as missing during compilation. The fix for this issue is included in JAXX 1.0.2-beta2.
- Multiple field declarations on one line, such as:
int a, b;
can fail with an internal error under some circumstances. To work around this issue, declare the fields separately:
int a; int b;
- Updated .script or .css files do not cause their corresponding .jaxx files to be flagged as needing recompilation. You will need to manually recompile the .jaxx file in order to incorporate the updates. The fix for this issue is included in JAXX 1.0.2-beta2.
[edit]
Documentation
- Several of the JAXX tags listed at List of JAXX tags are not yet documented. It should be fairly clear from the examples and other tags how to use them, and I will finish documenting the tags soon.
[edit]
Data binding
- The data binding system is not handling dependencies at the moment -- i.e. listening to "a.b.getText()" works if getText() changes, but it does not work if a, b, or b.getModel() change. The fix for this issue is included in JAXX 1.0.2-beta2.
- Properties defined via scripted methods (e.g. getFoo() and setFoo()) do not work with data binding when referenced from the same file in which they are defined. The fix for this issue is included in JAXX 1.0.2-beta2.
[edit]
Tag support
- JTable is supported using DefaultComponentHandler only, which means that data binding on JTable's selection will not work.

