FAQ #42

Question: How do I verify if a call was made via requestAction ? Answer: Check the requested element of the $params array. If it's set to 1, it IS via requestAction
//in your controller:

if($this->params['requested'] ){
... //it's via requestAction!
}
Add comment