cancel
Showing results for 
Search instead for 
Did you mean: 

Limit length of htmlb:textEdit

Former Member
0 Kudos

Hello,

I copy the code from blog [url=https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1235[ [original link is broken] [original link is broken] [original link is broken];/url]

My text is limited in textEdit but if I typed more characters than the limit, the textEdit grows up on the right and no new characters are displayed.

my page is opened from another with

' window.open( 'refuse.htm', target='_blank', 'height=200,width=500');

thanks

regards

Vu00E9ronique

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

<htmlb:textEdit

id="Edit_Text"

text="Text to change - or just add text"

wrapping="SOFT"

rows="10"

cols="30"

/>

Specify Wrapping = "SOFT" in your textedit tags....

Former Member
0 Kudos

Thanks for your answer.

I found the problem.

In fact my textEdit is encapsulated in a html:group / html:groupbody.

If I put width = 100% to the group and width = 100% to the textEdit, the problem occurs.

If I put only a width to the group, there is no problem.

Thanks

Regards.