Textfield's height in multiline mode

Hi,

I’m having a problem with textfield putting the height undefined, always displays one line and some text is hidden. Same behavior with setRows(0).

I want the textfield’s height grows automatically with content, is there anyway to achive that? The problem is that i want all content be always visible and don’t show the scrollbar.

Thanks.

Hi,

Maybe you could use the
ExpandingTextArea
add-on.

Thanks a lot, that addon has solved my problem :D, with a change in my css to achive the same behavior in readonly mode.

/* Readonly */
input.v-textfield-readonly,
.black input.v-textfield-readonly,
textarea.v-expandingtextarea-readonly,
.black textarea.v-expandingtextarea-readonly {
	border: none;
	background: transparent;
}

Thanks again.