13
gwtアプリケーションにFlowPanelオブジェクトがあります。GWTウィジェットのIDを設定する
FlowPanel flowPanel = new FlowPanel();
flowPanel.add(new Button("Edit"));
flowPanel.add(new Button("Delete"));
flowPanel.getElement().setId("idOfFlow");
それは私に次のエラー与える:
flowPanel.getElement().setId("idOfFlow") = No such instance method:
'void com.google.gwt.core.client.JavaScriptObject$.setId (java.lang.String)'
私はFlowPanel
のIDを設定することができますどのように?
私の知る限り、あなたが正しく – Kennet
あなたの一例を、それを設定していると、私の場合には正常に動作します。 – Stefan