일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Kotlin
- mybatis
- JavaScript
- hadoop
- MSSQL
- vaadin
- 보조정렬
- SQL
- mapreduce
- Spring
- SSL
- IntelliJ
- plugin
- GIT
- Java
- Android
- Eclipse
- react
- Express
- xPlatform
- R
- Python
- table
- es6
- window
- Sqoop
- 공정능력
- NPM
- SPC
- tomcat
- Today
- Total
목록vaadin (25)
DBILITY
공식 사이트 문서를 참조하여 작성하였다. Navigation이 이루어질 때 다수의 Lifecycle Event가 발생하며, 이벤트는 UI 인스턴스에 추가된 리스너와 observer interface를 구현한 모든 Component들에 발생한다. 이벤트의 순서는 이동이라는 관점에서 볼 때 머무르는 곳에서 떠나는 것을 시작으로 목적지에 도착 후까지로 생각하면 쉽게 이해가 되겠다. 머물러야 떠날 수 있다. 나름 철학적이네? 예제는 공식 사이트 문서를 참조하자. BeforeLeaveEvent Navigation 중 발생하는 첫 번째 Event로, Navigation을 지연, 취소 또는 목적지를 변경할 수 도 있다. BeforeLeaveEvent는 Navigation이 시작되기 전에 UI에 연결(attach)되고..
공식 사이트 문서를 참조하여 작성하였다. @Route Annotation에 의해 정의된 URL Fragment에 대한 Navigation Target으로 임의의 Component를 정의할 수 있게 한다. 말이 어렵다. 다음과 같이 @Route("") 으로 URL Fragmenet가 비어있는 경우 해당 Component를 Application의 기본 Navigation Target으로 정의한다. @Route("") public class HelloWorld extends Div { public HelloWorld() { setText("Hello world"); } } 다음과 같이 다른 경로(some/path)에 대해 별도의 Component를 정의할 수 있다. @Route("some/path") publ..
공식 사이트 문서를 참조하여 작성하였다. Vaadin Flow는 최신 웹 응용 프로그램과 웹 사이트를 구축하기 위한 새로운 Java Web 프레임 워크로, Vaadin Platform의 일부이며 Java 개발자에게 최신 Web Component를 사용할 수 있도록 지원하는 Vaadin Framework의 차세대버전이다. Flow는 개발자가 Java로 UI를 생성하거나 UI를 작성하고 Java를 사용하여 백엔드에 바인딩하기 위해 HTML 템플릿을 사용하여 생산성을 극대화한다. Flow를 사용할 때 클라이언트와 서버 간 통신 또는 웹 구성 요소의 작동 방식을 이해할 필요가 없다. 더 높은 추상화 수준에서 작동하는 Component를 사용하고 작성하는 데 집중할 수 있다. Vaadin Flow의 장점은 다음과..
form layout을 이용해 form field를 구성하던 것과 유사하다. 일단 되기는 하는데 공식 사이트나 공식 소개 책자에도 잘 나오지 않는다. 못 찾는 건가? 다른 방법도 찾아봐야겠다. ListDataProvider는 changeEvent가 발생하지 않는 걸까... DateField fieldRegDate = new DateField(); fieldRegDate.setDateFormat("yyyy-MM-dd"); fieldRegDate.setResolution(DateResolution.DAY); fieldRegDate.setLocale(Locale.getDefault()); fieldRegDate.setLenient(true); fieldRegDate.addStyleName(ValoTheme.D..
https://vaadin.com/docs/v8/framework/components/components-customfield.html Composite Fields with CustomField | Server-Side Components | Framework | Vaadin 8 Docs The CustomField is a way to create composite components as with CustomComponent, except that it implements the Field interface and inherits AbstractField, described in "Field Components". A field allows editing a property value in the ..