• Mohit Bhandari 3
  • NEWBIE
  • 9 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies

I have a QR code Generated. My requirement is when we'll upload that Qr code, it shows Decode and show the data.
Any help will be much appreciated.

Thanks 

Mohit Bhandari

Hi All,

I have a requirement where I need to upload the files to the salesforce (Notes and Attachments under the Opportunity related List). Salesforce has the Limit to store the file having file size up to 4.5mb. I have a running code which is uploading the files whose file size is less than 4.5 MB. What I want is, if the user clicks on the upload button and if the File size is greater than 4.5 MB (like 5-6 MB) then before uploading, it should compress the file until its size is equal or smaller to 4.5 MB.  

NOTE: File can be in any format (.jpeg, doc etc).

Any Help is appreciated! Thanks in Advance.

Regards,

Mohit

 

HI ,I am doing a trailhead on salesforce Lighting this is my code 

<aura:component >
    <aura:attribute name="item"  type="Camping_Item__c"  /> <!-- required="true" type="String"  -->
    <p> The Item is <ui:outputText value ="{!v.item}"></ui:outputText></p>
    <p>Name:
        <ui:outputText value="{!v.item.name}" /> 
    </p>

    <p>Quantity:
        <ui:outputNumber value="{!v.item.Quantity__c}" /> 
    </p>

    <p>Price:
        <ui:outputCurrency value="{!v.item.Price__c}" /> 
    </p>

    <p>Packed?:
        <ui:outputCheckbox value="{!v.item.Packed__c}" /> 
    </p>
    
    <p><ui:button label="Packed!" press="{!c.packItem}"></ui:button>
    </p>
</aura:component>



Now Its required of me to :
Add a button to the campingListItem component that when clicked, marks the item as packed.
1.Add a button labeled "Packed!" that calls the packItem controller function when clicked.
2.The controller action marks the item attribute as packed and disables the button.

I have done with the first point
I'm struggling with the second point.

the controller code looks something like this (which currently isnt working)

({
    packItem : function(component, event, helper) {
        var btn= event.getSource();
        var BtnMessage =btn.get("v.label");  
        component.set("v.item","Packed");          
        btn.disabled=false;
    }
})



each time I have failing the trailhead because of this error message
Challenge Not yet complete... here's what's wrong: 
The campingListItem JavaScript controller isn't setting the 'Packed' value correctly.