[SOLVED] Rows of textarea

Hi,

I’m trying to increase the rows showed on a a textarea, but I couldn’t. I tried the rows=“6” in HTML, I see this changed on the DOM, but rows showed are always 3. If I set class=“resizable”, the control starts with 1 row only and with side scrollbar, then it grows as I enter new lines, but If set the val() programmatically it doesn’t grow. Is there any way to get it higher and not resizable ?

Thanks.

Massimo.

List’s none resizable textarea has fixed height, you can reset it with:

.list textarea {
  height: auto;
}

Works like a charme!

Thanks a lot for so fast support.

Massimo.