Re: Helper not being found

2009-04-17 Thread Ernie
Miles, Here is my helper class state_list.php: class StateListHelper extends FormHelper { var $helpers = array('Form'); function select($fieldname, $label, $default=" ", $attributes = null) { $list = ''; $list .= $this->Form->label($label); $list .= $this->Form->select($fieldn

Re: Helper not being found

2009-04-17 Thread Ernie
Miles, Here is my helper class: class StateListHelper extends FormHelper { var $helpers = array('Form'); function select($fieldname, $label, $default=" ", $attributes = null) { $list = ''; $list .= $this->Form->label($label); $list .= $this->F

Helper not being found

2009-04-16 Thread Ernie
\helpers directory (state_list.php). I added StateList to the helpers array in the controller but I receive an error message indicating that the helper class was not found and that I should create the file "one \views\helpers\state_list.php". Any ideas? Thank you for your he