2017-11-23 1 views

답변

0

사용 가능한 방법과 테마 해상도를 사용자 지정하는 방법은 설명서의 Switching Themes에 설명되어 있습니다.

Library.setProperty("org.zkoss.theme.preferred", "custom"); 
Executions.sendRedirect(""); 

는 다음과 같은 방법 세트 개별 사용자에 대한 테마를 전환하려면 :

있습니다 (테마가 적용된 페이지를 다시로드 후) 라이브러리 속성을 설정하여 런타임에 모든 사용자에 대한 기본 테마를 변경할 수 있습니다 (기본적으로) 쿠키 :

Themes.setTheme(Executions.getCurrent(), "custom"); 
Executions.sendRedirect(""); 

로버트

관련 문제