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
- 인증서만료에러
- 변수명 짓는법
- Law of Demeter
- CSS
- was SQLRecoverableException
- Bandit Level 6 → Level 7
- 프로토타입 모형
- 커맨드공부
- springboot
- 에자일 모형
- was버그
- plsql
- Bandit Level 5
- 클린코드
- 디미터 법칙
- SQLRecoverableException
- mysql 튜닝
- pl/sql
- vue
- 시스템 파악 정리
- OpenAPI
- 폭포수 모형
- 나선형 모형
- Bandit Level 6
- avax.net.ssl.SSLHandshakeException:
- table scan
- java.sql.SQLRecoverableException
- 시스템 파악
- 명령어공부
- 스크럼기법
Archives
- Today
- Total
개발햄비
[wicket] radioGroup 例 본문
Form form = new Form("form");
add(form);
IModel<Company> selected = new Model<Company>();
RadioGroup group = new RadioGroup("group", selected);
form.add(group);
group.setOutputMarkupId(true);
// 選択したデータを更新する
group.add(new AjaxFormChoiceComponentUpdatingBehavior() {
@Override
protected void onUpdate(AjaxRequestTarget target) {
System.out.println("on change");
}
});
List<Company> companies = new ArrayList<Company>();
group.add(new ListView<Company>("choice", companies) {
protected void populateItem(ListItem<Company> it)
{
it.add(new Radio("radio", it.getModel()));
it.add(new Label("label", it.getModelObject().getName()));
}
});
'개발 > wicket' 카테고리의 다른 글
[wicket] wicket button javascript 転送の例 (0) | 2019.02.16 |
---|---|
[wicket] wicket button 例 (0) | 2019.02.16 |
[wicket]wicket ラジオ、radio使い方、例 (0) | 2019.01.27 |