I’m having a problem with an editable Grid that is using SQLContainer with a FreeformQuery and FreeformStatementDelegate. Adding and updating rows works as expected, except that only the first column is editable.
My quey is similar to this:
SELECT foo.id, foo.name, bar.something FROM foo LEFT JOIN bar ON foo.id = bar.id
In terms of this example, I would expect foo.name and bar.something to be editable, but only foo.name is editable. I’ve tried setting Grid columns editable, but that doesn’t help.
Vaadin version is 7.7.6 and database is MySql