Hi, I have the following class as a handler for a particular detail row in one table of my report. I plan to dynamically enter data for this row. How do you set values from this method?
public class TableRow extends RowEventAdapter {
@Override
public void onCreate(IRowInstance rowInstance, IReportContext reportContext) {
rowInstance.getRowData().getColumnValue(0)="Some value"; //This throws an error for obvious reasons. What is the alternate?
}
}
Thanks in advance