简体   繁体   中英

Auto resize not working in input text area in primefaces 5.3.6

I created ap:textArea with autoResize=true (default).The text area should start re-sizing once the content exceeds the described row size. It is not re-sizing and scroll bar is also not showing up, instead the text is stacking up and the height of the input text area also not changing.

<p:inputTextarea id="bldgNotes" rows="3" cols="40" counter="counter" maxlength="2550" style="width:96%" counterTemplate="{0} characters remaining." autoResize="true" value="#{buildingBean.originalBuilding.buildingNote}" />

This image shows that auto resize is not happening

This is a css issue. Check the HTML output and act accordingly.

mouse on element -> right click -> inspect and check around the classes there might be something like this :

 resize: none;
 or 
 overflow:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM