Gal Bracha
Gal Bracha

Reputation: 20011

Represent a List of strings in GWT as widget in an editor

I'm building a GWT app.

I want to associate a list of items (List < String >) to an editor.

Is there any built in widgets that support editing list of items?

Something that will show comma separated values and will know how to render them back to the proxy.

Upvotes: 2

Views: 932

Answers (4)

Gal Bracha
Gal Bracha

Reputation: 20011

Ended up with this Facebook auto complete style http://raibledesigns.com/rd/entry/creating_a_facebook_style_autocomplete

And demo http://demo.raibledesigns.com/gwt-autocomplete/

Upvotes: 1

Raduan Santos
Raduan Santos

Reputation: 1063

You can implement your custom class for CellList and/or CellTable adapting for your needs. All components from gwt extends Widget, and can be extended too.

Upvotes: 1

Hilbrand Bouwkamp
Hilbrand Bouwkamp

Reputation: 13519

You can use the CellList widget to display a list of items. If you want to present them horizontal add float:left as style to the individual items in the Celllist style items: cellListEvenItem and cellListOddItem.

Upvotes: 1

Stefan
Stefan

Reputation: 14863

Yes, take a look at CellTable.

Upvotes: 1

Related Questions