ListBox
インターフェイスを実装して使用しようとしていHasValue
ます。次のリンクからコード/アイデアを取得し、独自のリスト ボックス クラスを作成しました。
http://turbomanage.wordpress.com/2010/04/01/selectonelistbox-for-use-with-gwtmvp/
今問題は、ビューで使用していて、この new@UiTemplate
にキャストするのが難しいことです。ListBox
ListBox
私のビュークラスコード:
// defines List Box , so it get attached with UiTemplate
@UiField ListBox countryListBox ;
//-- this function should get the list box, i call this in presenter...
//-- now the problem is i do not know how i take this listbox back as selectOneListBox
public HasSelectedValue <T> getCountry() {
// TODO Auto-generated method stub
//return desTextBox;
SelectOneListBox<T> sel = new SelectOneListBox<T>(null);
sel =(SelectOneListBox<T>) countryListBox;
//return (SelectOneListBox<T>) countryListBox;
return sel;
//return countryListBox ;
}