List data provider + table

Hi,

i use table binded with list data provider, in table if i change checkbox or text field value and i want to retrieve new value it don't work. I use this code to d this:

try{

this.getSessionBean1().getZipEntryListDataProvider().cursorFirst();

do {

String dest = (String)this.getSessionBean1().getZipEntryListDataProvider().getValue("destinat ion");

System.out.println(dest);

info(dest);

} while (this.getSessionBean1().getZipEntryListDataProvider().cursorNext());

return null;

}

catch(Exception e){

info(e.getMessage());

return(null);

}

if i bind table with a cachedrowset dataprovider this code work fine and i have the new values entred by user

how to do this with ListDataProvider

Thanks

[806 byte] By [walid.ka] at [2007-11-27 0:08:20]
# 1
Hi!Try to look here: http://blogs.sun.com/winston/entry/displaying_two_dimensional_dataMaybe it will give You some clue.Thanks,Roman.
-Grif-a at 2007-7-11 16:07:20 > top of Java-index,Development Tools,Java Tools...
# 2
Hi Romain,it's not my need
walid.ka at 2007-7-11 16:07:20 > top of Java-index,Development Tools,Java Tools...
# 3
any way to do this?
walid.ka at 2007-7-11 16:07:20 > top of Java-index,Development Tools,Java Tools...