0
私はVaadinを初めて使用しています - thisのようないくつかのデモを試してみてください。異なる効果を持つVaadinのデモ
しかし、私は私のワークスペースにそれを実行に非常に同じコードに次のことを見ている:私のコードは、私が唯一と呼ばれるこの当ページ上の例と同じである
単純化のために異なるTree
コンストラクタ。私が使用しているスプリッタとPanel
がcom.vaadin.ui.*
からすべてです:
@Override
protected void init(VaadinRequest vaadinRequest) {
setContent(panels());
}
これはちょうど約すべてのスプリッタに起こった:
private Component panels() {
// Have a panel to put stuff in
Panel panel = new Panel("Split Panels Inside This Panel");
// Have a horizontal split panel as its content
HorizontalSplitPanel hsplit = new HorizontalSplitPanel();
panel.setContent(hsplit);
// Put a component in the left panel
Tree tree = new Tree("Menu");
hsplit.setFirstComponent(tree);
// Put a vertical split panel in the right panel
VerticalSplitPanel vsplit = new VerticalSplitPanel();
hsplit.setSecondComponent(vsplit);
// Put other components in the right panel
vsplit.addComponent(new Label("Here's the upper panel"));
vsplit.addComponent(new Label("Here's the lower panel"));
return panel;
}
その後、私は単に私のUIコネクタのinit()
からこのメソッドを呼び出しています、レイアウト、私が行ってきたパネルデモ
何が欠けていますか?
TIA。
ドキュメントを言うことによって、例えばそれを行うことができます。https://vaadin.com/docs/-/part/framework/layout/layout-settings.html#layout([私をクリックしてください] .settings.size) –
デモとドキュメントは最新のVaadinバージョン(?)で更新されていないようです。最新のものをインストールしました。最新のドキュメントがありますか? – user6401178
@ user6401178あなたは古くなったと思われるものを特定しましたか? –