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
- prisma
- Oracle LISTAGG 사용 예시
- angular button
- 검색
- scroll
- 앵귤러 애니메이션
- summary
- angular route
- Angular Router
- 호버
- angular modal
- mysql if
- flex-1
- angular animation
- ApexChart
- formgroup
- TAILWIND
- 옵저버블
- 앵귤러 모달
- route
- Router
- 스크롤 이벤트 감지
- ajax 사용 예시
- modal
- Ionic modal
- 아이오닉 스크롤 이벤트
- 스크롤 이벤트
- egov spring ajax 사용 예시
- 모달
- 셀렉트박스 커스텀
Archives
- Today
- Total
목록dismiss (1)
깜놀하는 해므찌로
angular modal dismiss 예시
delete() { const items = localStorage.getItem('orderInfos'); let orderInfos: OrderInfo[] = []; if (items) { orderInfos = JSON.parse(items); const index = orderInfos.findIndex( (orderInfo: OrderInfo) => orderInfo.id === this.orderInfo.id ); orderInfos.slice(index, 1); localStorage.setItem('orderInfos', JSON.stringify(orderInfos)); } this.modalController.dismiss(null, 'confirm'); } 1. dismiss 할 시 ..
IT
2023. 6. 18. 16:12