inline, but remember to use * $this->Js->writeBuffer() with onDomReady=>false then, though. * * 2011-03-07 ms */ class FormExtHelper extends FormHelper { public $helpers = array('Html', 'Js', 'Tools.Common'); public $settings = array( 'webroot' => true, // true => APP webroot, false => tools plugin 'js' => 'inline', // inline, buffer ); public $scriptsAdded = array( 'date' => false, 'time' => false, 'maxLength' => false, 'autoComplete' => false ); public function __construct($View = null, $settings = array()) { if (($webroot = Configure::read('Asset.webroot')) !== null) { $this->settings['webroot'] = $webroot; } if (($js = Configure::read('Asset.js')) !== null) { $this->settings['js'] = $js; } parent::__construct($View, $settings); } /** * Creates an HTML link, but accesses the url using DELETE method. * Requires javascript to be enabled in browser. * * This method creates a `