• san5aug
  • NEWBIE
  • 20 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 3
    Likes Received
  • 0
    Likes Given
  • 14
    Questions
  • 4
    Replies
When we deploy a flow with a screen component, its failing. This screen component is using a Lightning component backed by apex controller. We are using APIversion 44. 

Lightning component
<aura:component implements="force:lightningQuickAction,lightning:availableForFlowScreens,lightning:actionOverride,flexipage:availableForRecordHome"  access="global"  controller="CreateVendorAccountCtrl">
</aura:component>
CreateVendorAccountCtrl
public class CreateVendorAccountCtrl {
}

 
I think that my this thought is weird but I am still thinking.

Basically OWD is record level security. We can provide the same security level by profile and role. Then what is the significance of OWD? Cann't we make OWD obsolete?

 
Hi,

I am trying to include one js file dynamically in component. For this I have created a boolean property .I am setting its value through commandbutton. But its not working. Please help.
Component Code
<apex:outputPanel id="jQueryPanel">
<apex:outputPanel rendered="{!includejQuery}" >

    <apex:includeScript value="https://code.jquery.com/jquery-1.10.2.min.js" />
        <script type="text/javascript">
    		alert('{!includejQuery}');
    	</script> 
    </apex:outputPanel>
</apex:outputPanel>

<apex:commandButton status="statusProcess"  value="New" action="{!showPopup}" rerender="jQueryPanel" />


Controller Code

public boolean includejQuery {get;set;}

 public void showPopup(){
    	includejQuery = true;
    
	}
	
	public void closePopup() {         
        includejQuery = false;
    }

I am getting alert 'true" after clicking command button. But there is no scipt included. When I search HTML source of this page it shows blank jQueryPanel as below. I am wondering from where this alert is comming if there is nothing in source.

Page Source.
<span id="MirHome:form1:j_id358:j_id391:2:j_id393"><span id="MirHome:form1:j_id358:j_id391:2:j_id393:j_id394:jQueryPanel"></span>

Hi community,

I have a button on which I want to open a model popup after processing a business logic. While processing I want to show processing image. On this model pop-up, I want show output of business process.

Please help.