I have never been able to get the batchingDisplayGroup to work. I
always get an index out of bounds exception. Whats the deal here.
Below is the code in my component to set it up:
protected ERXBatchingDisplayGroup dg;
public tablerecordDG(WOContext context) {
super(context);
EODatabaseDataSource dds = new
EODatabaseDataSource(this.session().defaultEditingContext(),
"Items");
dg = new ERXBatchingDisplayGroup();
dg.setDataSource(dds);
dg.setNumberOfObjectsPerBatch(20);
}