资 源 简 介
Some components / Widgets that focus on making your GWTcoding more productive.
first draft contains:
ExtendedListbox A listbox with Collection support.
public void addItems(Collection extends ListBoxEnabled> collection);
where ListBoxEnabled is a simple interface to get/set value and name)
it implements
Iterable
so you can use foreach with it.
public ListBoxEnabled getSelectedItem();
gives you the selected item
public String getSelectedValue();
gives you the value of the selected item
NumberBox, a Text Box only accepting numbers. You can also set an upper and lower limit on the value the box accepts.
JavaDoc and examples to come.