일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- route
- 스크롤 이벤트 감지
- 스크롤 이벤트
- 호버
- mysql if
- angular button
- ajax 사용 예시
- 셀렉트박스 커스텀
- 모달
- summary
- angular modal
- egov spring ajax 사용 예시
- 앵귤러 모달
- formgroup
- TAILWIND
- Router
- Oracle LISTAGG 사용 예시
- angular route
- angular animation
- 옵저버블
- Ionic modal
- modal
- ApexChart
- 아이오닉 스크롤 이벤트
- 검색
- scroll
- Angular Router
- flex-1
- prisma
- 앵귤러 애니메이션
- 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..