일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- was SQLRecoverableException
- 인증서만료에러
- table scan
- 디미터 법칙
- Bandit Level 6
- Law of Demeter
- 폭포수 모형
- 커맨드공부
- was버그
- java.sql.SQLRecoverableException
- 변수명 짓는법
- plsql
- avax.net.ssl.SSLHandshakeException:
- 시스템 파악
- OpenAPI
- 시스템 파악 정리
- pl/sql
- Bandit Level 6 → Level 7
- CSS
- 스크럼기법
- 프로토타입 모형
- SQLRecoverableException
- mysql 튜닝
- Bandit Level 5
- 나선형 모형
- vue
- 클린코드
- springboot
- 에자일 모형
- 명령어공부
- Today
- Total
목록개발/wicket (4)
개발햄비
Form form = new Form("form");add(form); IModel selected = new Model();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 companies = new ArrayList(); group.add(new List..
// Add a form with an onSubmit implementation that sets a message Form form = new Form("form") { protected void onSubmit() { info("Form.onSubmit executed"); } }; AjaxButton testBtn=new AjaxButton("button1") { protected void onSubmit(AjaxRequestTarget target, Form form) { //ターゲットからjavaScriptを投げます。 target.appendJavaScript("alert('update complete!');"); } };form.add(testBtn); add(form);
Form form = new Form("form") { protected void onSubmit() { info("Form.onSubmit executed"); } }; Button button1 = new Button("button1") { protected void onSubmit() { info("button1.onSubmit executed"); } }; form.add(button1); Button button2 = new Button("button2") { protected void onSubmit() { info("button2.onSubmit executed"); } }; button2.setDefaultFormProcessing(false); form.add(button2); add(f..
ラジオボタンの例です。 public class RadioChoicePage extends WebPage { //variable to hold radiobox values private String selected ; public RadioChoicePage(final PageParameters parameters) { add(new FeedbackPanel("feedback")); Form form =new Form("form"); add(form); List list =new ArrayList(); SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd"); for(int i= 1 ;i