Textwizard
From Contao Community Documentation
Enhanced list wizard widget.
Extension-Overview | |
---|---|
Name of the developer | Helmut Schottmüller (hschottm) |
Developer Website | http://www.aurealis.de |
Version of the extension | 1.1.0 |
Compatibility with Contao Version | 2.9.0 - 2.9.1 |
Compatibility with TYPOlight Version | 2.7.0 - 2.8.4 |
Link to Extension Repository | http://www.contao.org/extension-list/view/textwizard.en.html |
Donate the developer | http://aurealis.de/donate.html |
textwizard widget (list input)
textwizard is an enhanced list wizard widget. It allows you to edit a list of text entries in a backend form. Additional to Contao's list wizard it automatically selects the content of a new or duplicated entry and it adds a 'new' button to add a new empty entry in the list.
embedding textwizard into backend forms
Embedding textwizard in backend forms works exactly like embedding a list wizard. The following example shows an embedded textwizard inside the field array of a Contao data container:
'fields' => array ( 'scale' => array ( 'label' => &$GLOBALS['TL_LANG']['tl_survey_scale']['scale'], 'exclude' => true, 'inputType' => 'textwizard', 'eval' => array('allowHtml'=>true, 'mandatory' => true) ) )
--Hschottm 11:03, 11 September 2010 (CEST)