quarks
quarks

Reputation: 35276

Insert ICON/PNG inside TextArea

Without resorting to wrapping a GWT TextArea in a separate DIV, how to add a search icon/magnifier icon inside the text area?

Upvotes: 0

Views: 1184

Answers (2)

Marconius
Marconius

Reputation: 703

Use a Composite wrapping a FlowPanel, put a text area and an image inside, then in CSS position the icon absolutely so it's over the text field.

Upvotes: 0

Suresh Atta
Suresh Atta

Reputation: 121998

No, Not possible.Text area is not a normal Widget.

GWT's TextArea maps directly to a HTML TextArea thats why you can only set text to it. The only thing you can do ist create a Grid/VerticalPanel/HorizontalPanel and put in each cell a separate TextArea.

Google Groups

Similar Question

Upvotes: 1

Related Questions