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
anitha12anitha12 

pagerefernce using picklist

Hi All,

Actually I have 10 reports. need to put it in a picklist. When I select a report for picklist it must be go to partcular reprtpage. can any one pls help me.



Thanks,
anitha.
Mani RenusMani Renus
You need to use actionsupport component, in that you need to call method ,in that method based on picklist value you have redirect to required page..

like

<apex:inputField value="{!UrsPicklist__c.}" id="pk">
      <apex:actionSupport event="onchange"
                            action="{!CallMethod}"
                            rerender="pb"/>             
   </apex:inputField>
Vidhyasagaran MuralidharanVidhyasagaran Muralidharan
you can go through this link
Vidhyasagaran MuralidharanVidhyasagaran Muralidharan
http://sfdc-heretic.warped-minds.com/2006/04/10/progmatic-access-to-salesforcecom-reports/