I'am programming a generic DataGrid to Excel exporter. What I wanted to do is to extract an ArrayList which represents the rows, and for each row I have an array of Colomn. So basically, I want to extract an ArrayList<ArrayList<String>>.
The DataGrid have some methods as dataGrid.getColumn(i) or dataGrid.getRowElement(i) but I couldn't find anything to get a String from a specific cell(row,col).
Any idea ?
