Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- SPC
- es6
- IntelliJ
- Android
- JavaScript
- MSSQL
- xPlatform
- table
- tomcat
- hadoop
- Kotlin
- Express
- mybatis
- Sqoop
- GIT
- Python
- plugin
- Spring
- R
- NPM
- window
- SSL
- vaadin
- 공정능력
- mapreduce
- SQL
- react
- Eclipse
- 보조정렬
- Java
Archives
- Today
- Total
DBILITY
vaadin 8 grid datefield sample 본문
반응형
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.DATEFIELD_ALIGN_CENTER);
Column<User,Date> colRegDate = grid.addColumn(User::getRegDate,new DateRenderer(new SimpleDateFormat("yyyy-MM-dd", Locale.getDefault())))
.setId("regDate").setCaption("REG_DATE");
colRegDate.setEditorBinding(
grid.getEditor().getBinder().forField(fieldRegDate)
.withConverter(new LocalDateToDateConverter(ZoneId.systemDefault()))
.bind(User::getRegDate, User::setRegDate)
);
반응형
'front-end & ui > vaadin legacy' 카테고리의 다른 글
vaadin composite field (0) | 2018.07.19 |
---|---|
vaadin inputMask (0) | 2018.07.13 |
vaadin 8 icon 설정 (0) | 2018.07.09 |
vaadin table header text alignment (0) | 2018.07.06 |
vaadin table/grid Image display (0) | 2018.07.02 |
Comments