I want set error validation to input field manually in controller example:
if ($remainTime < 30) { ..... set error validation in here (error: lim
if the $validate is defined in the model, bindModel wont cause closs of $var validate.
As for you primary question; you can set/unset/update $validationErrors of the models..eg
($remainTime < 30) { $this->Model->validationErrors['limitTime'] = "time is less than 30"; }