[ Plugins ] SweatAlert2 배경 닫기 방지 키워드 prevent backdrop dismiss 증상 배경화면 클릭시 닫기 방지, ESC 버튼 클릭시 닫기 방지 관련 URL https://stackoverflow.com/questions/47749095/prevent-sweetalert-to-be-closed-on-clicking-outside-the-popup-window 해결책 allowOutsideClick: false, allowEscapeKey: false, FE/Plugins 라넌.B 2021.06.18
[ ANGULAR ] 화폐 콤마 표시 https://stackoverflow.com/questions/56891796/how-to-hide-currency-symbol-in-angular-currency-pipe How to hide currency symbol in angular currency pipe I'm trying to use Angular currency pipe and I wanted to remove the currency symbol all together from the formatted number, but it seems there is no option to do that. So is there any easy way to ac... stackoverflow.com 방식1 - currency pipe 사용 price.. FE/Angular 라넌.B 2021.06.04
[ FLUTTER ] iOS 빌드시 앱이 종료되는 현상 iOS 모바일기기 연결 후 터미널 - fvm flutter run 명령어 수행시 Error launching application on iPhone. 에러를 일으키면서 앱이 종료되는 현상 발생. 원인: iOS 13.3.1버전부터 해당 증상이 발생됨 해결방법: iOS 13.4 이상의 버전으로 업데이트하여 구동 참고 : https://tylergrey.github.io/2020/03/ios_13.3_build_error/ Team/난감했던 이슈들 거북 2021.05.31
[ PLUGIN ] SweetAlert z-index 값 1060 이므로 다른 absolute나 fixed 요소 1060이하로 지정할 것 FE/Plugins HEON.D 2021.05.28
[ AWS ] ElasticBeanStalk Timezone 설정 .ebextensions 폴더 00-set-timezone.config 파일 commands: set_time_zone: command: ln -f -s /usr/share/zoneinfo/Asia/Seoul /etc/localtime 카테고리 없음 HEON.D 2021.05.18
[ ANGULAR ] subscribe 상태 변경 .subscribe 할때 렌더링 뷰가 업데이트 되지 않는 경우 import { ChangeDetectorRef } from '@angular/core'; constructor( private cdr: ChangeDetectorRef ) {} this.cdr.detectChanges(); 카테고리 없음 HEON.D 2021.05.13
[ IONIC ] iOS IDFA 추적 동의 config.xml AD tracking app.component.ts // https://www.npmjs.com/package/cordova-plugin-idfa const idfaPlugin = cordova.plugins.idfa; idfaPlugin.getInfo() .then(info => { if (!info.trackingLimited) { return info.idfa || info.aaid; } else if (info.trackingPermission === idfaPlugin.TRACKING_PERMISSION_NOT_DETERMINED) { return idfaPlugin.requestPermission().then(result => { if (result === idfaPlugi.. FE/IONIC HEON.D 2021.05.12
[ ANGULAR ] radio-group change event error 기본설정 개별설정 (change) 이벤트 사용 시 에러가 발생하여 데이터가 변경되지 않는다. 그러므로 (input)을 사용하자. !! FE/Angular 라넌.B 2021.05.11