kartik-v / yii2-detail-view

Various enhancements to the Yii 2 Detail View with ability to edit data and manage styles using BS3.
http://demos.krajee.com/detail-view
Other
70 stars 56 forks source link

How to remove hints from fieldConfig template for all fields? #171

Closed thadudexx closed 5 years ago

thadudexx commented 5 years ago

'formOptions' => [ 'fieldConfig' => [ 'template' => "{input}\n{error}", ], ], doesn´t work for me.

You are setting $this->formOptions['fieldConfig']['template'] = "{input}\n{hint}\n{error}"; in the init method, why not use that as the default value instead of the hardcoded string?

thank you for the great work.

kartik-v commented 5 years ago

Set showHints to false within formConfig within formOptions

thadudexx commented 5 years ago

Thank you, didn´t see the showHints option.