頁面佈局的隱藏

primafaces中針對佈局須要隱藏一些部分時,能夠用下面的語句
(假設要隱藏頁面佈局的西部) 佈局

LayoutOptions west = new LayoutOptions();
LayoutCustomController layoutCustomController = FacesUtils.getBackingBean(
"layoutCustomController", LayoutCustomController.class);
//這句話表示西部暫時隱藏,若是人工點擊的話還能夠出來
   west.addOption("resizable", true);
//這句話表示西部長久隱藏,人工點擊恢復的框不存在
west.addOption("initHidden", true);
layoutCustomController.getLayoutOptions().setWestOptions(west); get

相關文章
相關標籤/搜索