Hi!
I got lot of fields in db defined as text and when creating a form it is all rendered as <textarea>.
I know I can add ['type' => "text"] to all inputs, but I want something for all view.
I tried:
Or change those columns to varchar? The assumption Cake is making here is that if you’ve defined your column as text, it’s because it’s to potentially hold a LOT of data, more than can be comfortably edited in a single line, so it goes to a textarea. A varchar indicates that it’s shorter, so Cake uses the shorter input field.