Questions tagged [aura]
Aura is an open source UI component framework for developing dynamic web apps for mobile and desktop devices. Aura provides a scalable long-lived lifecycle to support building apps engineered for growth. Aura supports partitioned multi-tier component development that bridges the client and server. It uses JavaScript on the client side and Java on the server side. Aura is the underlying technology behind Lightning Components in Force.com.
1,350 questions
0 votes
0 answers
10 views
Height / Scroll for Aura/LWC Component in Global Action
I cannot seem to get the container for a Global Action to scroll or expand it's height when popped out from it's bottom dock. This question / code snippet was the closest thing I had to a solution. &...
0 votes
1 answer
28 views
Lightning Quick Action Application Event not working
I added a quick action button/aura component. That quick action button is just an aura component that fires an "application" event. I have another component that is embedded on the Lightning ...
0 votes
0 answers
32 views
How to pass data from Aura to LWC through a vf page
Currently we have the below working component structure: LWC has an iframe, within which we have embeded an vf page, From vf page we are embeding an aura component. Code snippets: LWC Html: <iframe ...
0 votes
0 answers
49 views
Images stored as SF Files are not rendered in PDF Report
In our project we used both aura component and visualforce page resided inside a Lightning Page to create pdf report. Aura component fetches required data, configured template and uses Handlebar.js to ...
0 votes
2 answers
78 views
Get identification of a datatable in onrowselection of an Aura lightning:datatable
I have an iterator and then datatable for each Product. <aura:iteration items="{!v.aMap}" var="anItem"> <lightning:accordionSection name="{! anItem.orderItem....
-1 votes
1 answer
57 views
Poor Search Results on Aura Experience Site for Partner Users
My org is migrating partner users from a Visualforce Partner Community site to an Aura Partner Experience site. A major challenge is that the search results on the Aura site pale in comparison ...
0 votes
0 answers
24 views
Disable or throw error if one user clicked on "Assign To Me" button for rest all Users
I have a aura component which shows list of Task with button inside dataTable. Now, If two users click on "Assign To Me" at the same time, I want to handle it using error. First user should ...
0 votes
1 answer
47 views
aura override action not getting recordpage ID
<aura:component implements="lightning:actionOverride, lightning:hasPageReference" access="global"> <aura:handler name="init" value="{!this}" ...