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
akschampakschamp 

how to pass parameters array to VF page from Javascript without appending in URL

Hi All,

 

I have created List button on Custom Object list View, On click of that button All I want is to open VF page in new Window and pass parameters to that page

 

var listparm = {!GETRECORDIDS( $ObjectType.Candidate__c)};

 

window.open('/apex/SendEmailToList');

 

As I have the parameters of length upto 500 ID's, I dont want to pass in the URL to VF page.

 

is there any other way to pass parameters array to VF page from Javascript without appending in URL.

 

It's really urgent please let me know..........