본문 바로가기

728x90

Salesforce QA/Lightning

(31)
How can we call child component controller method from the parent component controller method? Q : How can we call child component controller method from the parent component controller method? Q : 부모 컴포넌트 컨트롤러 메서드에서 하위 컴포넌트 컨트롤러 메서드를 어떻게 호출할 수 있습니까? A : To call a child component's controller method, we need to first create a aura:method which is publically accessible, aura:method is used to communicate down the containment hierarchy i.e. parent to child. A : 자식 구성 요소의 컨트롤러 메서드를 호출하려면 먼저 ..
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 ..
Which interface we are supposed to implement so that a lightning component can be used as a Tab? Q : Which interface we are supposed to implement so that a lightning component can be used as a Tab? Q : Lightning 구성 요소를 탭으로 사용할 수 있도록 어떤 인터페이스를 구현해야 합니까? A : We need to implement the following "force:appHostable" so that we can use the component as a Tab A : 컴포넌트를 탭으로 사용할 수 있도록 다음 "force : appHostable"을 구현해야 합니다.
Which interface we are supposed to implement so that a lightning component can be used as quick action? Q : Which interface we are supposed to implement so that a lightning component can be used as quick action? Q : Lightning 구성 요소를 빠른 작업으로 사용할 수 있도록 어떤 인터페이스를 구현해야 합니까? A : We need to implement the following "force: lightningQuickAction" so that we can use the component as a Quick Action A : 컴포넌트를 빠른 동작으로 사용할 수 있도록 다음과 같은 "force : lightningQuickAction"을 구현해야 합니다.
What are the basic differences between Application Event and Component Event? Q : What are the basic differences between Application Event and Component Event? Q : 응용 프로그램 이벤트와 구성 요소 이벤트의 기본 차이점은 무엇입니까? A : Component events are used to do communication between child and parent. They use bubbling and capture same as used in DOM events. A change in a child component can be communicated to the parent component via component event. Application events are used to communicate a..
What are the type of events into Salesforce Lightning component? Q : What are the type of events into Salesforce Lightning component? Q : Salesforce Lightning 구성 요소에 대한 이벤트 유형은 무엇입니까? A : Application Event Scope of this event is throughout the lightning App and any component which has registered for this event would get a notification. Component Event Scope of this event is within itself or the parent component of this event, all the components declared withi..
What is the use of lightning in Salesforce? Q : What is the use of lightning in Salesforce? Q : Salesforce에서 Lightning을 사용하는 것은 무엇입니까? A : Lightning makes it easier to build responsive applications for any device. Lightning includes these technologies: Lightning components give you a client-server framework that accelerates development, as well as app performance, and is ideal for use with the Salesforce mobile app and Salesforce Lightnin..
What is renderer in lightning component? Q : What is renderer in lightning component? Q : Lightning 구성 요소의 렌더러 란 무엇입니까? A : When a component is rendered or rerendered, the aura:valueRender event, also known as the render event, is fired. Handle this event to perform post-processing on the DOM or react to component rendering or rerendering. The event is preferred and easier to use than the alternative of creating a custom renderer. A : ..

728x90