AutocompleterTextfield
Aus Contao Community Documentation
Version vom 28. Oktober 2011, 14:50 Uhr von Psi (Diskussion | Beiträge)
Erweiterungs-Übersicht | |
---|---|
Entwickler Webseite | http://www.4wardmedia.de.de |
Version der Erweiterung | 1.0.0 |
Kompatibilität mit Contao Version | 2.10.x |
Link zum Extension Repository | http://www.contao.org/erweiterungsliste/view/autocompleterTextfield.html |
Link zum Tracker | http://contao-forge.org/projects/autocompleterTextfield/issues |
Autocompleting für ein Textfeld anhand von options, options_callback oder foreignKey. \\ Über die Eval-Option storeId kann die ID bzw. der Array-Key anstatt der Textwert gespeichert werden.
Einfaches Textfeld, Vervollständigung anhand der tl_page, Speicherung der tl_page.id
'myPage' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_tmp']['myPage'], 'inputType' => 'autocompleterTextfield', 'foreignKey' => 'tl_page.title', 'eval' => array('storeId'=>true) ),
Einfaches Textfeld, Vervollständigung anhand von options
'myPage' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_tmp']['myPage'], 'inputType' => 'autocompleterTextfield', 'options' => array('Erster Eintrag','Zweiter Eintrag','Dritter Eintrag') ),
Verwendung im MultiColumnWizard
'einFeld' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_asd']['einFeld'], 'inputType' => 'multiColumnWizard', 'eval' => array( 'columnFields' => array ( 'myTxt' => array ( 'label' => array('label','desc'), 'inputType' => 'autocompleterTextfield', 'options' => array('Erster Eintrag','Zweiter Eintrag','Dritter Eintrag'), 'eval' => array('style'=>'width:180px') ), 'myTxt2' => array ( 'label' => array('label','desc'), 'inputType' => 'autocompleterTextfield', 'options_callback' => array('myClass','myCallback'), 'eval' => array('style'=>'width:180px') ), ) ), ),