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
Ramya R 18Ramya R 18 

Hi I need write the wrapper class for displaying the list of file documents in Vf page for case object. on click of selecting the checkbok of the particular file record email has to send talong with the file adocument not:I am not referening attachment

Hi I need write the wrapper class for displaying the list of file documents in Vf page for case object. on click of selecting the checkbok  of the particular file record on the VF page, email has to send along with the file document(file frome file object) attached with the emaile. note:I am not refereing notes and attachment 
Syed Insha Jawaid 2Syed Insha Jawaid 2
Hi Ramya

Class format : 
public class fileWrapper {
Boolean isSelected;
Case caseRecord;
List< ContentDocument> listOfContentDocument;{add Case related Content documents}
}

Cheers!!!