Ben bu eylem için oluşturulan şablon verileri tutan benim Symfony eylem bir değişkeni ayarlamak istiyorum. Ben eylem ile bazı JSON içeriği iade ediyorum, ve ben eylem JSON çıktısı ne olacağını depolamak ve geri istiyorum.
public function executeAjaxPriceAdditionCreate(sfWebRequest $request)
{
$this->form = new ProductPriceAdditionAjaxForm();
$json['success'] = $this->processAjaxPriceAdditionForm($request, $this->form);
$this->setTemplate('ajaxPriceAdditionNew');
$json['content'] = ???; // THIS IS WHERE THE RENDERED TEMPLATE CONTENT SHOULD GO.
$this->getResponse()->setHttpHeader('Content-Type','application/json; charset=utf-8');
return $this->renderText(json_encode($json));
}