public function deleteAction()
 {
     $request = $this->getRequest();
     $dataResponse = array();
     if ($request->isPost()) {
         $pipelinePropertyValueId = $request->getParam('valueId');
         $pipelinePropertyValueMapper = new Pipeline_Model_Mapper_PipelinePropertyValues();
         $pipelinePropertyValueMapper->deleted($pipelinePropertyValueId);
         $dataResponse['rowDeleted'] = array('rowId' => $pipelinePropertyValueId, 'message' => 'Значение успешно удалено');
     }
     echo $this->_helper->json($dataResponse);
 }