Greg,
Thanks, I built new jars from the trunk. The new code works great.
To build my example I had to modify my copy of CustomTableRow from the
demo due to a change in CalendarDate, but I see that has been taken care
of in the new demo version.
// for reference - setDate now uses a static Calend
I think I have located the problem. If you are building the platform
from SVN, can you get the latest and try your code again?
Thanks,
Greg
On Oct 19, 2009, at 8:48 PM, Carl Marcum wrote:
Greg,
The problem I had is in the behavior of the table when using the
ListAdapter.
The table doesn't se
Greg,
The problem I had is in the behavior of the table when using the
ListAdapter.
The table doesn't seem to update properly. Example when editing a text
field and hitting enter. Nothing happens.
Clicking out of the table, nothing.
I have since noticed if I hit 'esc' I do get an update.
If instea
FYI, if you are using a ListAdapter, you need to be sure to only
modify the list via the adapter, not the source. Otherwise, the table
view won't get any update events and won't properly reflect your
changes...
G
On Oct 17, 2009, at 9:25 AM, Vicente de Rivera III wrote:
I also tried using
Hi Carl,
Using a ListAdapter as the table data should work OK. Can you provide
a code sample that demonstrates more specifically what you are doing
in #3 below?
Thanks,
Greg
On Oct 16, 2009, at 6:09 PM, Carl Marcum wrote:
Hi all,
I'm trying to set up an editable TableView based on table
I also tried using ListAdapter but I had the same situation. So I just have
both
Client c = new Client();
jpaList.add(c);
tableDataList.add(c);
On Sat, Oct 17, 2009 at 6:09 AM, Carl Marcum
wrote:
> Hi all,
>
> I'm trying to set up an editable TableView based on table data from a
> Li