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
Binu 8Binu 8 

Need to implement filter and sort in custom apex page

Hi Team,

    I have a custom apex page for mobile application which is for my daily task entry.How can I implement the filter and sort functionality
    like in contacts page.Please clarify my doubt.
PratikPratik (Salesforce Developers) 
Hi Binu,

You can create a vf page to show the list view and sort it.

Sample code:

<apex:page > <apex:enhancedList type="Business_Requirement__C" height="300" rowsPerPage="10"/> </apex:page>

Thanks,
Pratik
Binu 8Binu 8
Hi Team,

I will have to implement a sorting component in  Tasks menu in salesforce1.Now the sorting functionality is missing there.