일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- GIT
- SQL
- 공정능력
- window
- vaadin
- Kotlin
- Java
- JavaScript
- hadoop
- 보조정렬
- SSL
- Express
- Sqoop
- table
- react
- es6
- SPC
- plugin
- Spring
- NPM
- MSSQL
- R
- Python
- mapreduce
- mybatis
- Eclipse
- Android
- xPlatform
- tomcat
- Today
- Total
목록전체 글 (655)
DBILITY
https://vaadin.com/blog/vaadin-10-learning-resources Vaadin 10 learning resources Vaadin 10 was recently released, and it’s been received with great enthusiasm. By the time of writing this, there are over 40 components available in Vaadin Directory that support Vaadin 10. We have had a webinar and an introduction video about... vaadin.com
http://ko.learnlayout.com/index.html layout관련해서 속성 보고 싶을때...
공식 사이트 문서를 참조하여 작성하였다. @Route("path") Annotation을 사용하여 경로를 정의할 때 Component는 기본적으로 html페이지의 Tag 내부에 Rendering 된다 (HasElement.getElement()에 의해 반환된 요소는 에 연결). ParentLayout은 @Route Annotation내에 layout 메소드를 사용하여 정의할 수 있다. 다음 예제는 CompanyComponent가 MainLayout이라는 Layout 내부에 Rendering 한다. @Tag("div") @Route(value="company", layout=MainLayout.class) public class CompanyComponent extends Component { } 상위(p..
공식 사이트 문서를 참조하여 작성하였다. 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..