일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 변수명 짓는법
- vue
- java.sql.SQLRecoverableException
- 나선형 모형
- Bandit Level 6 → Level 7
- 인증서만료에러
- 시스템 파악 정리
- 시스템 파악
- was SQLRecoverableException
- 폭포수 모형
- Bandit Level 5
- avax.net.ssl.SSLHandshakeException:
- mysql 튜닝
- springboot
- Bandit Level 6
- OpenAPI
- 명령어공부
- Law of Demeter
- 디미터 법칙
- 프로토타입 모형
- 스크럼기법
- pl/sql
- table scan
- 커맨드공부
- 에자일 모형
- SQLRecoverableException
- CSS
- 클린코드
- was버그
- plsql
- 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