I have a report where the dataSource is:
public OrderMaster orderMaster;
public List<OrderDetail> orderDetails;
I have created the report using the information from the orderMaster object, and inserted a List into the center of the page to display the orderDetails. This works fine, but I would like to carry to formatting of the list to fill up the whole area in the center of the report (every other line has the background color set, column boarders, etc). Right now if there are 3 items in the orderDetails list, the list displays the 3 items, then there is a blank area until the PageFooter starts.
Anything I can do to get the list to behave the way I want it?
public OrderMaster orderMaster;
public List<OrderDetail> orderDetails;
I have created the report using the information from the orderMaster object, and inserted a List into the center of the page to display the orderDetails. This works fine, but I would like to carry to formatting of the list to fill up the whole area in the center of the report (every other line has the background color set, column boarders, etc). Right now if there are 3 items in the orderDetails list, the list displays the 3 items, then there is a blank area until the PageFooter starts.
Anything I can do to get the list to behave the way I want it?