You need to sign in to do that
Don't have an account?

Save button is not working on my running VF page(reder as PDF) ?
first page
<apex:page controller="SaveInvoice">
<apex:commandbutton action={!calculate_n_refer_2_another_page}/>
that contain command button and controller class conCls ( that class have a mehod for creating data tabel and return new page reference of second apex class )
second page
<apex:page controller="SaveInvoice" renderas="pdf">
<apex:datatabel>
so when command button refer control to the second vf page in new tab , all things working but that Save button is not working .Why ?
Thanks in advance .
It seems Chrome is the only one to have this weird behavior. PDF gets saved in Firefox, Opera and IE browsers. The only finding that we had was same controller - for initial launch page and actual PDF page. If you try same thing with different controllers, save works as expected.
If differentiating the controllers is not possible, then a practical solution to it would be to right click on PDF and do 'Save Page as'.