• Tonima Mallick 7
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 2
    Replies
Hello guys!

I want to open LeadConvercion popup from lead status change. How its possible to open standard LeadConvert window?

Thanks 
Tonima Seth
Hi guys!
I need a quick response for this issue.Please help me out.
I have made a visualfoce page so that it will work both in classic and lightning mode. I have embedded that page in standard objects detailed page. Earlier, my classic code is working properly but now when i altered my code to work in lightning too, then the lookup icon is not coming for classic code. Please see the screenshot attached below. Thanx for the help in advance!

User-added image0
 
Hello, guys!

We have used lighting design system in our visualforce pages so that they can run both in classic and lightning mode.But I am encountering a problem while doing the same. The code is running perfectly in lightning as well as for visualforce tabs but it's not working as required for embedded visualforce pages in any standard object detailed page.Can anyone resolve this issue or suggest us something?
Below is the screenshot of the embedded visualforce page.Thanx for the help in advance.

User-added image

Here is my code for this page

<!----------- Classic View ------------->
<apex:variable value="{!CONTAINS($CurrentPage.URL, 'lightning.force.com')}" var="isLightningMode"/>
   
    <apex:outputpanel layout="none" rendered="{!isLightningMode = false}">
    <apex:sectionHeader rendered="{!if($CurrentPage.parameters.type !='',true,false)}" title="{!$ObjectType.Related_Reference__c.label} " subtitle="{!opportunity.name}"/>
    <!--<apex:outputLink rendered="{!if($CurrentPage.parameters.type !='',true,false)}" style="text-decoration:none;color:blue;"  value="/{!$CurrentPage.parameters.id}">Opportunity: {!opportunity.name}<br /><br /></apex:outputLink>-->
    <apex:pageMessages ></apex:pageMessages>
    <apex:outputPanel id="mop">
    <apex:form >

 <!--------------------Lighting View --------------->
   <apex:outputpanel layout="none" rendered="{!isLightningMode = true}">
   
      <div class="slds">
 
Hello guys!

Can anyone please explain Workday integration, what is the use of this integration?, and how it is related to Work.com

Thanks in Advance

I am facing issue in my code.I want that simply on button click open any url(www.google.com)
Here is my code
User-added image
//------COMPONENT--------//
<aura:component implements="force:appHostable" access="global" controller="ValidateButton1">
   
    <!--<ui:button class="abc" label="Validate"  press="{!c.navigate}"  />-->
 <ui:button class="abc" label="Validate"  press="{!c.navigateToRecord}"  />
</aura:component>

//----------------CONTROLLER-----------------//
({
    doInit : function(component, event, helper){
        console.log('1324');
        console.log('id'+component.get("v.recordId"));
    },
  
    navigateToRecord : function (component, event, helper) {
   helper.navigateToRecord(component);
        },
    
})
//---------------------HELPER------------------//

({
    navigateToRecord : function() {
        var urlEvent = $A.get("e.force:navigateToURL");
    urlEvent.setParams({
    "url": 'https://www.google.com'
   });
   urlEvent.fire();
    }
})

Thanks in advance
please help me out

I am facing issue in my code.I want that simply on button click open any url(www.google.com)
Here is my code
User-added image
//------COMPONENT--------//
<aura:component implements="force:appHostable" access="global" controller="ValidateButton1">
   
    <!--<ui:button class="abc" label="Validate"  press="{!c.navigate}"  />-->
 <ui:button class="abc" label="Validate"  press="{!c.navigateToRecord}"  />
</aura:component>

//----------------CONTROLLER-----------------//
({
    doInit : function(component, event, helper){
        console.log('1324');
        console.log('id'+component.get("v.recordId"));
    },
  
    navigateToRecord : function (component, event, helper) {
   helper.navigateToRecord(component);
        },
    
})
//---------------------HELPER------------------//

({
    navigateToRecord : function() {
        var urlEvent = $A.get("e.force:navigateToURL");
    urlEvent.setParams({
    "url": 'https://www.google.com'
   });
   urlEvent.fire();
    }
})

Thanks in advance
please help me out