codefog / contao-haste

Haste is a collection of tools and classes to ease working with Contao
http://codefog.pl/extension/haste.html
MIT License
43 stars 24 forks source link

Preserve HTML widget data #123

Closed zonky2 closed 6 years ago

zonky2 commented 6 years ago

Preserve HTML widget data - you can use

$objForm->addFormField('my_html_1', array(
    'inputType' => 'html',
    'html'      => '<div class="text"><p>This is my explanation for the next input of forms...</p></div>'
));
Toflar commented 6 years ago

Just use the Contao way:

$objForm->addFormField('my_html_1', [
    'inputType' => 'html',
    'eval' => ['html' => '<div class="text"><p>This is my explanation for the next input of forms...</p></div>']
]);