Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これを行う方法はありますか?フレックステーブルの1つのセル内にテキストボックスとボタンを追加しようとしています。
ありがとう
FlowPanelまたは別のパネルでそれらをラップするだけです。
何かのようなもの
Widget widget1 = new Label("Hello"); Widget widget2 = new Label("World"); FlowPanel panel = new FlowPanel(); panel.add(widget1); panel.add(widget2); // get the table table.setWidget(x, y, panel);