function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Prince PranavPrince Pranav 

Create ContactListTile Component in Lightning

ContactListTile
Hi All,
i am new in lightning. I am designing a Contact component. But i want like this what i uploaded in pic.
I created the crad tile with the help of slds documentation. But not geting like this format.
Raj VakatiRaj Vakati
Use lightning:fileUpload component provides an easy and integrated way for users to upload multiple files. The file uploader includes drag-and-drop functionality and filtering by file types.

 
<aura:component>
    <aura:attribute name="myRecordId" type="String" description="Record to which the files should be attached" />
    <lightning:fileUpload label="Attach receipt"
        name="fileUploader"
        multiple="true"
        accept=".pdf, .png"
        recordId="{!v.myRecordId}"
        onuploadfinished="{!c.handleUploadFinished}" />
</aura:component>
 
({
    handleUploadFinished: function (cmp, event) {
        // Get the list of uploaded files
        var uploadedFiles = event.getParam("files");
        alert("Files uploaded : " + uploadedFiles.length);
    }
})

https://developer.salesforce.com/docs/component-library/bundle/lightning:fileUpload/documentation
Prince PranavPrince Pranav
Actually i want my component looks like that picture i uploaded.