문제

Some text area in SharePoint Online allows us to dynamically enlarge the box by dragging the corner. Is it possible to do the same with rich text boxes on NewForm.aspx or DispForm.aspx?

enter image description here

도움이 되었습니까?

해결책

Google chrome recognizes < textarea > HTML element and adds that expand feature. It's not SharePoint-specific.

For rich text editor - < textarea > HTML tag is not used. Rather, it's a plain < div >. Google Chrome has no idea that this div is used by SharePoint for WYSIWYG editor. Refer to the image below. So, there is nothing much you can do about it.

enter image description here

If you feel like the text editing area for rich text is too small - you can add some CSS to make it large:

.ms-rtefield{
   width: 800px; 
   height:800px
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top