세일즈포스 커스텀 레코드 생성 만들기 4 - lwc:if 및 Save 구현
·
Salesforce/개발_한국어
Lightning Web Components(LWC)에서 lwc:if 를 사용해서 RecordType에 따라 조건부 렌더링 (Conditional Rendering) 사용법과 Aura가 감싼 Lwc 에서 어떻게 Save처리 하는지 알아보도록 하겠습니다. lwc:if를 사용한 조건부 렌더링 이해하기 Statement1 Statement2 Statement3  코드만 보아도 직관적으로 이해할 수 있는 내용입니다.property1가 true이면 Statement 1이 렌더링이 되고 false이면 2번 째 조건을 확인하고 렌더링합니다. elseif와 else는 선택사항공식 문서에 따르면 elseif와 else는 optional 합니다. 즉 if문 하나만 작성해도 괜찮습니다. Switch문을 사용한..
세일즈포스 Git 연동하기 (IntelliJ & Illuminated Cloud)
·
Salesforce/개발_한국어
IntelliJ를 이용해서 깃 (Git)과 여러분의 오그와 연결하는 방법을 알아보도록 하겠습니다. 이 포스트에서는 IntelliJ를 이용해 Git과 프로젝트를 연동하는 방법을 설명합니다. Git 설치, 회원가입, SSH 설정, 버전 관리의 중요성 등 기본적인 사항들은 다루지 않습니다. 기초적인 내용은 다른 블로그에서 참고하시기 바랍니다. Git 활성화1. 인텔리제이 상단 메뉴에서 VCS -> Enable Version Control Integration 클릭2. 왼쪽에 Commit, Pull Requests / 하단에 Git 메뉴 추가된거 확인. Repository 연결1. 상단의 Git 메뉴 클릭 (VCS가 Git으로 변경됨) -> Manage Remotes 클릭2. + 눌러 연결하고자하는 Git의 R..
Salesforce Development - Development Environment (IntelliJ, SFDX)
·
Salesforce/Development_English
IntroductionFrom now on, I will post not only about admin-related topics but also about development-related ones. As a developer, one of the first things you should do before diving into development is setting up your development environment. While it may not be overly difficult, it can be daunting for those who just entered into the Salesforce environment, which may find it challenging to figur..