예제 #1
0
 /**
  * Force an update on a specified component
  *
  * @param Component $c
  *
  * @return void
  */
 public function renderNow(Component $c)
 {
     ob_start();
     $c->render();
     $this->response->setUpdate($c->getDivId(), ob_get_clean());
 }