开发者

UiBinder Placeholder

开发者 https://www.devze.com 2023-02-14 03:00 出处:网络
how can I create a placeholder with开发者_如何学C in the UiBInder, to later fill it with e.g. a Tree element? (Like the Flextable, but simpler).

how can I create a placeholder with开发者_如何学C in the UiBInder, to later fill it with e.g. a Tree element? (Like the Flextable, but simpler).

Regards, Stefan


<g:SimplePanel ui:field="panelForTree" />

Then, in Java:

@UiField protected SimplePanel panelForTree;

...

panelForTree.setWidget(theTreeYouMadeLater);
0

精彩评论

暂无评论...
验证码 换一张
取 消