Hi ,
How to retrieve the data in the datagrid .
am using the below code in my action class to retrieve datagrid data , but am not getting values.
Datagrid dataGrid = (Datagrid)arg4.getControl("TaskManagerFormComponent_TaskManagerFormComponent_TaskManagerFormComponent_xform1_EmbeddedForm1_0_value_0_ReadonlyTable1_0_datagrid");
DataProvider dpr= dataGrid.getDataProvider();
dpr.initBind();
while(dpr.nextRow()) {
System.out.println("dpr9 .."+dpr.getDataField(1));
}
Can any one help me pls .
Regards
Srini