If you are getting this error:
Fatal error: Call to a member function link() on a non-object in /var/www/html/<you folder here> when trying to call
$javascript->link('javascript_filename');
Ensure you have activated the javascript helper in your controller as only the forms helper is active by default.
<?php class YourController extends AppController { var $helpers = array('javascript'); function index(){ } } ?>
By PHPin24 @ 2009-07-07 08:40:36
|