/**
* @throws IndexOutOfBoundsException if the the index is outside the range of existing rows.
*/
public void removeRow(int index) {
broadcastEvent(new RepeaterEvent(this, RepeaterEventAction.ROW_DELETING, index));
rows.remove(index);
getForm().addWidgetUpdate(this);
broadcastEvent(new RepeaterEvent(this, RepeaterEventAction.ROW_DELETED, index));
}