how to get the value of a column of dmf:datagrid row on java side?
hi, i am trying to get the value of dmf:datagrid row but unfortunately i could not find appropriate method of DataGrid. Datagrid dg2 = (Datagrid) getControl("dgTaskList", Datagrid.class); List<DatagridRow> rows=dg2.getDatagridRows(); for(int i=0;i<rows.size();i++){ DatagridRow row=rows.get(i); //which DataGridRow method…