본문 바로가기

728x90

visualforce

(5)
Salesforce Developer Console 사용법 (1) : File > New (1) Salesforce Org에서 기본으로 제공하는 Web기반의 IDE인 Developer Console의 사용법에 대해서 알아보겠습니다. 그 첫 번째 시간으로 File 관련 메뉴에 대해서 진행합니다. 1. 상단 톱니바퀴 > Developer Console 마우스 우클릭 > 새 탭에서 링크 열기 * 팝업형태로 새창으로 열 수도 있으나 새 탭에서 여는 것을 추천합니다. 2. File > New > Apex Class를 순서대로 클릭합니다. 3. Apex Class 이름을 입력 후 OK 버튼을 클릭합니다. 예) SampleController 4. 입력한 이름으로 Class 파일이 하나 생성된 모습입니다. 5. File > New > Apex Trigger를 순서대로 클릭합니다. 6. Apex Trigger 이름..
Salesforce Standard / Custom Object Mass Delete 기능 구현 표준 및 사용자 정의 오브젝트 탭 목록에서 여러 건을 한 번에 삭제하기 위해서는 Visualforce와 Apex Class로 개발이 필요합니다. 여기서는 Lotto__c 라는 Custom Object를 예제로 사용하였습니다. MassDeleteExtension.apxc public with sharing class MassDeleteExtension { ApexPages.StandardSetController setCon; public String error { get; set; } public PageReference originalUrl { get; set; } public MassDeleteExtension(ApexPages.StandardSetController controller) { setCo..
Is Lightning Components replacing Visualforce? Q : Is Lightning Components replacing Visualforce? Q : Lightning 구성 요소가 Visualforce를 대체합니까? A : No Lightning component is not replacing Visualforce, Visualforce is still supported by Salesforce. A : Lightning 구성 요소가 Visualforce를 대체하지 않고 Visualforce는 여전히 Salesforce에서 지원됩니다.
How can we use a lightning component in a VisualForce Page? Q : How can we use a lightning component in a VisualForce Page? Q : VisualForce 페이지에서 Lightning 구성 요소를 어떻게 사용할 수 있습니까? A : A Lightning component can be embed in any webpage using a very powerful and flexible feature, Lighting out. When used with Visualforce some complexity becomes simpler. Lightning component can be added to Visualforce page in three steps: 1. We have to first Add the Lightning ..
What is difference between Visualforce Components and lightning components? Q : What is difference between Visualforce Components and lightning components? Q : Visualforce 구성 요소와 번개 구성 요소의 차이점은 무엇입니까? A : Visualforce components are page-centric and most of the work is done on the server. Lightning is designed from the component up, rather than having the concept of a page as its fundamental unit. Lightning Components are client-side centric, which makes them more dynami..

728x90