render() публичный Метод

This method overrides the parent implementation.
public render ( $writer )
Пример #1
0
 /**
  * Renders the repeater by writing a span tag with the container id obtained from {@link getContainerID()}
  * which will be called by the replacement method of the client script to update it's content.
  * @param THtmlWriter writer for the rendering purpose
  */
 private function renderDataList($writer)
 {
     $writer->write('<span id="' . $this->getContainerID() . '">');
     parent::render($writer);
     $writer->write('</span>');
 }