Questions tagged [rendering]
The rendering tag has no summary.
38 questions
0
votes
0
answers
49
views
LWC component not rendering in Agentforce
I am trying to show credit score of my leads in Agentforce. I am using a LWC to show that in the agent console, but I am getting this issue. I don't know what I am doing wrong, I cant see the LWC ...
0
votes
0
answers
104
views
Conditionally Render A field in lightning-datatable
I am currently using a lighting-datatable. Is there any way to conditionally render one of the fields in the javascript when I am setting the columns? I know I could create multiple columns and then ...
0
votes
0
answers
38
views
Security Issue While Rendering Rich Text in Visualforce Page [duplicate]
I am trying to render a rich text content in a Visualforce Page like so :
<apex:outputText styleClass="richText" value="{!richTextContent}" escape="false"/>
...
1
vote
1
answer
2k
views
When will if:true stop working?
As per https://developer.salesforce.com/docs/platform/lwc/guide/create-conditional.html the legacy if:true directives are no longer recommended and must be replaced with lwc:if conditional directives.
...
5
votes
0
answers
221
views
How to debug the salesforce app on iphone?
I'm working on optimizing some custom lighning components for mobile use.
On an android phone those components are rendered fine by the saleforce app, but if I open up the same components in the ...
0
votes
1
answer
101
views
display paragraph based on conditions
I have a VFP and I'd like to show some of my paragraph based on conditions.
Here is one example of my code:
<apex:outputText rendered="{!Offer__c.Offer_Type__c == 'Conditional' && ...
1
vote
0
answers
483
views
How do I dynamically show/hide a line in a classic email template
I'm working on a functionality that sends an email to the user with a links to a list of documents. The following is the code from .email VF template that does it.
<!-- starting lines of email --&...
0
votes
1
answer
747
views
How to use Conditional Field Rendering with Field Sets
I was looking for an example of conditional rendering of fields: like the one here How to hide/show the fields based on Picklist value
My question is, how would you do this with the standard FieldSet ...
0
votes
0
answers
113
views
aura render event: DOM update issue
This question relates to this post, where we got rid of the unescapedHtml tag to rather use render event for dynamic DOM manipulation.
My new issue is the following:
I'm listening to the aura "...
1
vote
1
answer
8k
views
LWC: Refresh for:each loops when new Array item added
I have 2 LWC components and loop through data in the following structure
periods
period.stages
stage.details
Within stage.details I render a table/form for each detail. After the table/form I have an ...
0
votes
1
answer
2k
views
Aura if and else not working as expected
Aura if and else provides conditional rendering. But this is what happening in my case. I have 2 version of my UI one is desktop and other is mobile. Which gets rendered using aura if and else :
aura ...
0
votes
1
answer
2k
views
Apex includeScript outputting scripts after </html> tag
I am using the loadOnReady="true" attribute of <apex:includeScript /> to defer loading of scripts till DOM rendering is complete.
Here's my VF page skeleton:
<apex:page doctype=&...
0
votes
2
answers
729
views
aura:if visibility issue with force:inputField
I am having a problem with aura:if tag. As when my condition is false, my field will be invisible. The Problem is when my condition again went true from false then only Label of my inputfield is ...
3
votes
0
answers
658
views
Visualforce Page as a PDF File with metadata
Is there a way to render a Visualforce Page as a PDF File with metadata. Ex: Title , Authour, Subject and Keywords. I tried adding meta tags to the VF page and so many other ways. But non of them were ...
0
votes
0
answers
145
views
Rerender of select list throws validation error on required field
I have a vf page with drop down to select the activity type : Task/Event and display the fieldset accordingly.
When I Change the type the required fields throws errors. I added action region and ...