Xataface  2.0alpha2
Xataface Application Framework
 All Data Structures Namespaces Files Functions Variables Groups Pages
autocomplete.php
Go to the documentation of this file.
1 <?php
2 
7  function &buildWidget(&$record, &$field, &$form, $formFieldName, $new=false){
8  $widget =& $field['widget'];
9  $options =& Dataface_FormTool::getVocabulary($record, $field);
10  $factory = Dataface_QuickForm::factory();
11  $el = $factory->addElement('autocomplete', $formFieldName, $widget['label'], array('class'=>$widget['class'], 'id'=>$field['name']) );
12  $el->setOptions($options);
13  return $el;
14  }
15 }