Sizing of RadzenTextarea

Hi, I want RadzenTextArea to occupy 100% of the height of its parent container. I tried various Styles, e.g. Style="flex: 1 1 auto; width: 100%; resize: none;"
but none of them worked.

Any ideas? Thanks!

Hi @Murmelmann,

The parent needs to be of display: flex; type for the TextArea's height: 100% or flex: 1; to take effect.

Hi @yordanov

my textarea is inside RadzenFormfield, your suggestion does not seem to work for such case. Any idea? Thanks

@Murmelmann, have a look at this playground:

Thanks a lot, but this means I will always have to set a height in the parent (in your case 500px)? I wanted parent to take up available space but height: 100% does not work?! Thanks