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

