Height adjustment for multi-line text field?

Hello,

In the Forms designer application, is there a way to increase the height from two lines to maybe 6? Not everyone knows to grab the bottom right handle to manually increase the height, and many are asking if we can do this.

image

Thank you!

Hello @Pandra ,
try this :slight_smile:

fd.spRendered(() => {
  fd.field('MultipleLines').$refs.textarea.style.height = '400px';
});
1 Like

Thank you StepanS, that was exactly what we needed. Much appreciated!

1 Like