Example #1
0
 /**
  * Route validation error responses through response negotiator,
  * so they return the correct markup as expected by the requesting client.
  */
 protected function getValidationErrorResponse()
 {
     $request = $this->getRequest();
     $negotiator = $this->getResponseNegotiator();
     if ($request->isAjax() && $negotiator) {
         $this->setupFormErrors();
         $result = $this->forTemplate();
         return $negotiator->respond($request, array('CurrentForm' => function () use($result) {
             return $result;
         }));
     } else {
         return parent::getValidationErrorResponse();
     }
 }