/**
  * Set the repeater source for the lazy data
  *
  * @param mixed $repeater \MUtil_Lazy_RepeatableInterface or something that can be made into one.
  * @return \MUtil_Model_Format_DisplayFormatter (continuation pattern)
  */
 public function setRepeater($repeater)
 {
     parent::setRepeater($repeater);
     $this->table->setRepeater($this->_repeater);
     return $this;
 }