• lavanya mulpuri
  • NEWBIE
  • 15 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 8
    Replies
Hi All,

I have to generate the following email wizard in a lightning component on-click of the mail Any help?

User-added image

Thanks in advance,
Lavanya Mulpuri.

 

HI All,

Need to query the data that's displayed here

As you can see the image above, It's list of records from Activity List View. How can I query all the TASK records that are getting displayed in this ListView.

Trying to implement, this functionality because, LEX doesn't support Activity List View

Thanks in advance!

Hi All,

I'm unable to save my Lightning Component, becase it keeps throwing this error Invalid <aura:attribute> type: Wrapperobj[]

Attribute declaration: 
 <aura:attribute name="contactList" type="SearchLeads.Wrapperobj[]" />
Class name : SearchLeads
Wrapper class name : Wrapperobj

I'm facing this issue, after my org got updated to SPRING 18

Thanks in advance!
Lavanya

Hi All,

I have created an action button for case object, with lightning component and it's getting displayed in the detail layout. 

It's getting displayed here: 
User-added image

I need it here:
User-added image
Thanks iin advance!
HiAll,

Is there any API to fetch Class summary of any Apex class as shown in the attached image?
User-added image


Thanks in Advance! :)
Lavanya.
Hi All,

I'm unable to deserialize a string even when the value is not null. Here is my code snippet.

​public static List<ObjectA> processSelected(String constr) {
        system.debug('constr===>'+constr);  //getting value in this
        List<dupeContact> conList = (List<dupeContact>)JSON.deserialize(constr, List<dupeContact>.class);
        system.debug('dupeContact====>'+conList);     
        List<ObjectA> selectedContacts = new List<ObjectA>();
        if (conList != null && conList.size() >0) { 
            for (dupeContact  cCon : conList) {
                if (cCon.selected == true) {
                    selectedContacts.add(cCon.con);
                }
            }
        }

Thanks in Advance  :)

Hi All,

I'm unable to save my Lightning Component, becase it keeps throwing this error Invalid <aura:attribute> type: Wrapperobj[]

Attribute declaration: 
 <aura:attribute name="contactList" type="SearchLeads.Wrapperobj[]" />
Class name : SearchLeads
Wrapper class name : Wrapperobj

I'm facing this issue, after my org got updated to SPRING 18

Thanks in advance!
Lavanya

Hi All,

I have created an action button for case object, with lightning component and it's getting displayed in the detail layout. 

It's getting displayed here: 
User-added image

I need it here:
User-added image
Thanks iin advance!
HiAll,

Is there any API to fetch Class summary of any Apex class as shown in the attached image?
User-added image


Thanks in Advance! :)
Lavanya.
Hi All,

I'm unable to deserialize a string even when the value is not null. Here is my code snippet.

​public static List<ObjectA> processSelected(String constr) {
        system.debug('constr===>'+constr);  //getting value in this
        List<dupeContact> conList = (List<dupeContact>)JSON.deserialize(constr, List<dupeContact>.class);
        system.debug('dupeContact====>'+conList);     
        List<ObjectA> selectedContacts = new List<ObjectA>();
        if (conList != null && conList.size() >0) { 
            for (dupeContact  cCon : conList) {
                if (cCon.selected == true) {
                    selectedContacts.add(cCon.con);
                }
            }
        }

Thanks in Advance  :)
I have a requirement in the lightning quick actions. When I click on the action it should open in a new window, 
 
The Problem is for the first time it is working absolutely fine. but for the next time if want to use the same action again. I could not able to do.

The lightning component I used here is 

Here is Code.
({
    doInit : function(component) {
        var recordId =component.get("v.recordId")
         urlEvent.setParams({
          "url": '/'+url
        });
        urlEvent.fire();
	}
})


Thanks