일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Angular Router
- prisma
- Oracle LISTAGG 사용 예시
- angular animation
- ajax 사용 예시
- angular modal
- Ionic modal
- route
- 모달
- 스크롤 이벤트 감지
- 앵귤러 모달
- 아이오닉 스크롤 이벤트
- ApexChart
- 호버
- summary
- 셀렉트박스 커스텀
- egov spring ajax 사용 예시
- TAILWIND
- 스크롤 이벤트
- formgroup
- Router
- 앵귤러 애니메이션
- angular button
- modal
- scroll
- flex-1
- 검색
- 옵저버블
- angular route
- mysql if
- Today
- Total
목록formgroup (3)
깜놀하는 해므찌로
이름* 연락처* 아이디* 비밀번호* 비밀번호 확인* 관리자 권한 설정* {{role}} 취소 등록 0. 템플릿 코드 1. form 태그 활용 2. [fromGroup], (ngSubmit) 사용하기 3. ionic 기반은 'ion-' 시작하는 태그를 활용해야하며, input의 경우 label 이 필요합니다. import { CommonModule } from '@angular/common'; import { Component, Input, OnInit } from '@angular/core'; import { FormGroup, FormControl, Validators, FormsModule, ReactiveFormsModule, } from '@angular/forms'; import { IonicM..
adminForm = new FormGroup({ name: new FormControl('', Validators.required), tel: new FormControl('', Validators.required), id: new FormControl('', Validators.required), password: new FormControl('', Validators.required), passwordConfirm: new FormControl('', Validators.required), role: new FormControl('', Validators.required), updatedAt: new FormControl(new Date()), }); constructor(private modalC..