Simon Madsen
Posts: 0
Joined: Wed May 15, 2013 1:55 pm

Set a fixed height, and disable option to write in text area.

Hello there!
Is it possible to disable the option to write text in a text area? So it just contains text, but you can't write in it? Also, is it possible to set a fixed height for the text area?

I'm not great at this, so I hope you'll bare with me :)

Thanks in advance,
Simon

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

Set a fixed height, and disable option to write in text area.

Yes, try using 'readonly' or 'disabled' property.

Simon Madsen
Posts: 0
Joined: Wed May 15, 2013 1:55 pm

Set a fixed height, and disable option to write in text area.

Thats one of the questions, but where is this property, I can't see it anywhere? Am I supposed to write it myself? As I said, I'm not very good at this :)

Oleg Danchenkov
Posts: 0
Joined: Tue Apr 30, 2013 5:51 pm

Set a fixed height, and disable option to write in text area.

1) 'disable the option to write text'
In PROPERTIES tab forTextarea press 'More Properties' button. In 'More Properties' window add property with name and value: codereadonly/code
2) 'set a fixed height for the text area'
Add Class name to textarea. For example: fixedHeightTextarea
Create new css. Add this code to css
code.fixedHeightTextarea {height: 200px !important;}/code

Return to “Issues”