optionsURL = $optionsURL; parent::__construct($name, $title, $value, $maxLength); } function extraClass() { return parent::extraClass() . " autocomplete"; } function Field() { // Requirements::javascript('sapphire/javascript/AutocompleteTextField.js'); $extraClass = $this->extraClass(); $fieldSize = $this->maxLength ? min( $this->maxLength, 30 ) : 30; if($this->maxLength) { return "id() . "\" name=\"{$this->name}\" value=\"" . $this->attrValue() . "\" maxlength=\"$this->maxLength\" size=\"$fieldSize\" />
id() . "_Options\" class=\"autocompleteoptions\">
"; } else { return "id() . "\" name=\"{$this->name}\" value=\"" . $this->attrValue() . "\" />
id() . "_Options\" class=\"autocompleteoptions\">
"; } } function FieldHolder() { $holder = parent::FieldHolder(); $id = $this->id(); $holder .= << new Ajax.Autocompleter( '$id', '{$id}_Options', '{$this->optionsURL}', { afterUpdateElement : function(el) { if(el.onajaxupdate) { el.onajaxupdate(); } } } ); JS; return $holder; } } ?>