JVx 1.1 beta1 is available
It is available from the project page.
What's different?
This beta release is an update release and contains not a lot of new features.
- CSV Export uses client locale
Before 1.1, we used a semicolon ";" as separator. Now we use a locale specific separator. This solves country specific data export problems.
- Modal Internal Frames on MacOSX
We solved the problem with resizable modal internal frames on MacOSX. Now the resizebox is always visible.
- UITable readonly
Now it is possible to set an UITable readonly independent of the IDataBook.
- API changes
We reverted the API change, made in JVx 1.0, because the implementation was not very clever. Now it is possible to extend the DBStorage and have full database independent support. In JVx 1.0 you had to extend the default DBStorage and the specific MySqlDBStorage and the specific PostgreSqlDBStorage.... was not very developer friendly. With JVx 1.1 you have the same features but without development overhead.
Old:
DBStorage dbs = getDBAccess().createStorage();
dbs.open();New:
DBStorage dbs = new DBStorage();
dbs.setDBAccess(getDBAccess());
dbs.open();
Check the Changelog for a complete list, and use our Forum to talk with us