GWT 웹 브라우저 resize 이벤트 함수 활용한 레이아웃 사이즈 조정Devel/WEB2012. 9. 15. 22:04
Table of Contents
final VerticalPanel vp = new VerticalPanel();
vp.add(mainPanel);
vp.setWidth("100%");
vp.setHeight(Window.getClientHeight() + "px");
가로와 세로 사이즈를 GWT에서 제공하는 Window 사이즈로 설정한다.
Window의 Drag Resize 이벤트로 변경된 사이즈를 다시 설정한다.
Window.addResizeHandler(new ResizeHandler() {
public void onResize(ResizeEvent event) {
int height = event.getHeight();
vp.setHeight(height + "px");
}
});
RootPanel.get().add(vp);
'Devel > WEB' 카테고리의 다른 글
Python 웹 프레임워크 django 실행 명령어 정리 (0) | 2019.10.24 |
---|---|
SpringBoot 프로젝트 Apache Phoenix 구동을 위한 라이브러리 설정 (0) | 2017.04.03 |
Spring Framework 프로젝트에서 cvc-complex-type-3.2.2: Attribute 'local' is not allowed to appear in element 'ref' 에러 처리 방법 (0) | 2015.09.23 |
SmartGWT Tab Panel 새로고침 (re-draw) 코드 (0) | 2012.09.16 |
SmartGWT Tab 아이콘 추가 설정 (0) | 2012.05.23 |
@kogun82 :: Ctrl+C&V 로 하는 프로그래밍
Korean BioInformation Center(KOBIC) Korea Research Institute of Bioscience & Biotechnology Address: #52 Eoeun-dong, Yuseong-gu, Deajeon, 305-806, KOREA +82-10-9936-2261 e-mail: kogun82@kribb.re.kr Blog: kogun82.tistory.com Homepage: www.kobic.re.kr
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!