Re: Issue with TableView using ListAdapter

2009-10-21 Thread Carl Marcum
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

Re: Issue with TableView using ListAdapter

2009-10-20 Thread Greg Brown
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

Re: Issue with TableView using ListAdapter

2009-10-19 Thread Carl Marcum
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

Re: Issue with TableView using ListAdapter

2009-10-19 Thread Greg Brown
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

Re: Issue with TableView using ListAdapter

2009-10-19 Thread Greg Brown
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

Re: Issue with TableView using ListAdapter

2009-10-17 Thread Vicente de Rivera III
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