How can I Sort Wrapper list in Salesforce? - Forcetalks

文章推薦指數: 80 %
投票人數:10人

Hi,. You can use the sort() method of Salesforce List class. sort() : Sorts the items in the list in ascending order. Thanks ... Activity›Forums›Salesforce®Discussions›HowcanISortWrapperlistinSalesforce? Tagged: SalesforceCustomization,SalesforceDevelopment,WrapperClass,WrapperList HowcanISortWrapperlistinSalesforce?  Parulupdated3years,5monthsago 4Members · 4 Posts Salesforce®Discussions SalesforceCustomizationSalesforceDevelopmentWrapperClassWrapperList PRANAV MemberSeptember8,2016at2:24pm HiAll, HowcanISortWrapperlist? Ihavemadeawrapperclassinwhichthereisalistofsearchedproducts,Iwanttodisplaythosesearchedresultinascendingorderoftheirname. Thanks Mohit MemberSeptember16,2016at6:45am HiPranav, Hereisthecodeforsortingthewrapperlist:- globalclassBookimplementsComparable{ publicStringBookTitle; publicStringAuthor; publicIntegerTotalPages; publicDoublePrice; publicDatepublishingDate; publicenumSORT_BY{ ByTitle,ByPage } //Variabletodecidethememberonwhichsortingshouldbeperformed publicstaticSORT_BYsortBy=SORT_BY.ByTitle; publicBook(Stringbt,Stringa,Integertp,Doublep,Datepd) { BookTitle=bt; Author=a; TotalPages=tp; Price=p; publishingDate=pd; } globalIntegercompareTo(ObjectobjToCompare){ //SortbyBookNameAlphabetically if(sortBy==SORT_BY.ByTitle) { returnBookTitle.compareTo(((Book)objToCompare).BookTitle); } else//SortbyBookprice { returnInteger.valueOf(Price-((Book)objToCompare).Price); } } } shariq MemberSeptember19,2018at1:13pm Hi, Youcanusethe sort()methodofSalesforceListclass. sort(): Sortstheitemsinthelistinascendingorder. Thanks Parul MemberSeptember22,2018at5:25am Addingsomepointsandcodesnippet: 37downvote Apexprovidesa sortmethod ontheListclassforsorting.Forobjectssuchasthishowever,youmustimplementthe Comparable interface.NotetheSalesforcedocsamplesindicateyouneedtomakeyourclass'global'scope,thisisnolongertrue. publicclassjobsWrapperimplementsComparable { publicIntegercompareTo(ObjectcompareTo) { jobsWrapperjobsWrapper=(jobsWrapper)compareTo; if(job.Name==jobsWrapper.job.Name)return0; if(job.Name>jobsWrapper.job.Name)return1; return-1; } } Thenonceyouputyourobjectsintoalistyoucanusethesortmethod. Listjobs=newList(); //Addthingstothelist... jobs.sort();   Thanks Viewing1-4of4posts LogIntoreply. Public AllMembers MyConnections OnlyMe PublicAllMembersMyConnectionsOnlyMe Public AllMembers MyConnections OnlyMe Reply Subscribe PopularSalesforceBlogs Blog inSalesforceCloudPlatform OneofthemainreasonsbehindSalesforce’spopularityisitisconstantlyadaptingandenhancingfeatures.That’swhypeoplewhochooseSalesforcecanrestassured… AdditionalInvestments,Administrators,B2BModel,BusinessGrowth,BusinessProcess Ergonized Jan18,2021 989  Views Blog inSalesforceTools SalesforceDXisasetoftoolsallowingdeveloperstobuildcollaborativelyanddelivercontinuously.WhileweworktoolslikeEclipse,Maven,Antetc.to… DeveloperOrg,MetadataComponent,SalesforceCLI,SalesforceDeveloperOrg,SalesforceDevelopment BLUEFLAMELABSPRIVATELIMITED Jan31,2018 Blog inSalesforce AstheForcedotcomterminologygoes,Environmentsandorganizationsareequivalenttooneanother.ThisarticlewillbefocusingonSalesforceEnvironments,theirtypes,uses,characteristics,… AppTesting,CustomDatabaseObjects,DevelopingandTestingApplications,DevelopmentEnvironments,EnterpriseEdition Algoworks Mar30,2020 PopularSalesforceVideos Video inSalesforceStories Howcanasmallbusinessimproveitscustomerservice?Morethaneverbefore,supportingcustomersiskeytoasmallbusiness'ssurvival—sogive… salesforce,SalesforceVideo,Customers,customerservice,SalesforceLearning Nauman Sep15,2020 404  Views Video inSalesforceStories TheSalesforceCareResponseSolutionisavailableatnocosttoanyemergencyresponseteams,caremanagementteams,healthsystems,healthinsurers,andotherhealthcare… salesforce,SalesforceVideo,Pandemic,CoronaVirus,Covid19 Pooja Apr27,2020 410  Views Video inMarketing,SalesforceCloudPlatform SalesforceMarketingCloudhelpsbusinessesincloselyobservingconsumerbehavior.MarketingCloudhasanumberofplatformsthatarewell-segregatedandimmenselyusefulindefining… salesforce,SalesforceMarketingCloud,SalesforceVideo,SalesforceLearning,Marketing Algoworks Nov27,2020 347  Views Harassment Harassmentorbullyingbehavior Harassment Harassmentorbullyingbehavior Inappropriate Containsmatureorsensitivecontent Misinformation Containsmisleadingorfalseinformation Offensive Containsabusiveorderogatorycontent Suspicious Containsspam,fakecontentorpotentialmalware Other Pleaseconfirmyouwanttoblockthismember. Youwillnolongerbeableto: Seeblockedmember'sposts Mentionthismemberinposts Invitethismembertogroups Messagethismember Addthismemberasaconnection Pleasenote: Thisactionwillalsoremovethismemberfromyourconnectionsandsendareporttothesiteadmin. Pleaseallowafewminutesforthisprocesstocomplete. Youhavealreadyreportedthis Clear ClearAll Weusecookiestoenhanceyourbrowsingexperience.Pleaseseeourprivacypolicyifyou'dlikemoreinformationonouruseofcookies.



請為這篇文章評分?