gwt-editors

    6熱度

    1回答

    public interface Person { String getName(); void setName(String name); List<PersonFriend> getFriends(); } public interface PersonFriend { String getName(); } 我想實現一個僅查看編輯器Pers

    0熱度

    1回答

    有一個類層次結構類似這樣的GWT異質名單: interface Item { } interface ItemType1 extends Item { String getItemType1Data(); } interface ItemType2 extends Item { String getItemType2Data(); } 我Item的List一個

    0熱度

    1回答

    以下片段成功顯示Cat列表,但是當刷新驅動程序時,Cat對象中的值全爲空。 貓屋的名稱可以按預期進行編輯。 HasDataEditor<CatProxy> residentsEditor= HasDataEditor.of(cellTable) CatHouse{ String name; List<Cat> residents; } Cat{ String

    1熱度

    1回答

    工作比方說,我們有一個域實體定義是這樣的: interface MyNode { MyNode getParent(); void setParent(MyNode node); List<MyNode> GetChildren(); void AddChild(MyNode node); void RemoveChild(MyNode node

    0熱度

    1回答

    我正在使用GWT 2.4編輯器框架。我有一切工作與錯誤顯示,但我不知道如何風格的錯誤!它看起來像樣式是CssResource的一部分,因爲它們被混淆了。任何人都知道如何去造型這些? 我想要樣式的錯誤是由ValueBoxEditorDecorator#showErrors自動添加的錯誤。

    1熱度

    1回答

    我正在查看playEditor應用程序來學習和應用程序加載,但驗證程序在第一次後不工作。您有更新的版本嗎?

    3熱度

    2回答

    我想在我的項目中使用GWT的編輯器框架。 在我看來,(實現編輯器),我有我的UiBinder的領域: @UiField TextBox text; 在我的演講我通過GIN注入驅動程序實例: @Inject public AppointmentPopupPresenter(EventBus eventBus, MyView view, final AppointmentDriver appo

    2熱度

    1回答

    我對如何使用GWT的ValueListBox和編輯器感到困惑。我得到這個錯誤: The method setValue(String) in the type TakesValueEditor<String> is not applicable for the arguments (List<String>) 這是相關的代碼。 public class MyBean { priva

    4熱度

    1回答

    爲了不重複代碼,我已經決定前一段時間,重構我對編輯框架使用的看法。目前,每個視圖都是包含一組其他編輯器的編輯器。例如,「人物細節」視圖包含諸如「人物地址」,「人物圖像」,「人物描述」等編輯人員。每個編輯器都包含一些標準GWT小部件以及實例化和顯示這些小部件所需的邏輯。 現在,我想在「人員列表」視圖中重用這些組件中的一部分。所以,我想要有一張表格代表人物 - 一行 - 一個人。每行應包含例如:人名,

    3熱度

    1回答

    我發現除複製和粘貼現有GWT編輯器示例之外的任何內容都令人沮喪。這裏試圖創建一個最小編輯器,但沒有成功。 public class ContactEditor extends Composite implements Editor<Contact> { interface Binder extends UiBinder<Widget, ContactEditor> {} i